Chris Pearce
|
70e5180d4e
|
Bug 814541 - Silence warnings in gfx/layers/d3d9/Nv3DVUtils.cpp. r=Bas
|
2012-11-23 15:21:20 +13:00 |
|
Ed Morley
|
29308c09dd
|
Bug 798419 - Fix incorrect spellings of success(ful) in test output; r=me
|
2012-10-05 17:48:15 +01:00 |
|
Chris Jones
|
1e2b3a8245
|
Bug 790505, part 3: Add API for scheduling a shadowable-layer mutation to be applied at the next layers transaction. r=mattwoodrow,roc
|
2012-10-02 22:55:50 -07:00 |
|
Matt Woodrow
|
a5250ecdf6
|
Bug 770617 - Always mark inactive CanvasLayers as being dirty. r=cjones
|
2012-09-30 19:20:25 +13:00 |
|
Oleg Romashin
|
eaf15a9992
|
Bug 539356 - Part 20 - Simplify regions to avoid excessive region calculation. r=roc
|
2012-08-29 17:48:43 +12:00 |
|
Matt Woodrow
|
12901c44ef
|
Bug 539356 - Part 9f - Compute the invalid area of the layer tree and pass this to the widget. r=roc
|
2012-08-29 17:47:18 +12:00 |
|
Ed Morley
|
5a3b322459
|
Revert mozilla-inbound to e4dd1fa6d222 for crashes and test failures on a CLOSED TREE
|
2012-09-27 16:34:46 +01:00 |
|
Oleg Romashin
|
585aa99e71
|
Bug 539356 - Part 20 - Simplify regions to avoid excessive region calculation. r=roc
|
2012-08-29 17:48:43 +12:00 |
|
Matt Woodrow
|
49d4c24594
|
Bug 539356 - Part 9 - Implement DLBI. r=roc,bz,jwatt
|
2012-08-29 17:38:58 +12:00 |
|
Karl Tomlinson
|
d92d4176ef
|
b=777946 implement SCALE_STRETCH through ComputeEffectiveTransforms r=Bas
--HG--
extra : transplant_source : 6%CC%1F3%D1g%A7%098%7E%24%3DC%1D6N%F5%1Ax%0F
|
2012-09-18 15:16:15 +12:00 |
|
Ed Morley
|
d8eec8e75e
|
Backout 7f86b28171a2 (bug 787853) & e18fdb9a8e12, ba47dac3cf97, e3fdcf7ed7f2, 992ee4c72c87 (bug 777946) for intermittent linux M4 ABORTs
|
2012-09-17 14:17:02 +01:00 |
|
Karl Tomlinson
|
c8293dcec2
|
b=777946 implement SCALE_STRETCH through ComputeEffectiveTransforms r=Bas
--HG--
extra : transplant_source : %9AZ%89%90_4%08R%C5%0E%AB1%40g%23.%7Bo%EE%2A
|
2012-09-17 17:19:59 +12:00 |
|
David Anderson
|
59aad86af4
|
Merge from mozilla-central.
--HG--
rename : js/src/sharkctl.cpp => js/src/devtools/sharkctl.cpp
rename : js/src/sharkctl.h => js/src/devtools/sharkctl.h
rename : js/src/MemoryMetrics.cpp => js/src/jsmemorymetrics.cpp
|
2012-08-29 17:57:37 -07:00 |
|
David Anderson
|
fd50a14c90
|
Merge from mozilla-central.
|
2012-08-22 16:09:24 -07:00 |
|
David Anderson
|
f3d3148ca7
|
Merge from mozilla-central.
|
2012-08-21 15:59:12 -07:00 |
|
David Zbarsky
|
b27894f902
|
Bug 784004 - Don't include Layers.h everywhere Part 3 r=nical
|
2012-08-21 00:06:46 -04:00 |
|
David Anderson
|
5d981ba8fe
|
Merge from mozilla-central.
|
2012-08-16 14:04:20 -07:00 |
|
Jeff Gilbert
|
9aa9b3b9f5
|
Bug 783663 - Add ReadScreenIntoImageSurface for reading pixels from the screen - r=bgirard
|
2012-08-20 17:13:32 -07:00 |
|
David Anderson
|
0e509b2165
|
Merge from mozilla-central.
|
2012-08-13 13:40:42 -07:00 |
|
Matt Woodrow
|
1f62ddd68b
|
Bug 539356 - Part 8b - Move painting of retained layers to the view manager flush, and only composite on the paint event. r=roc
* * *
Fix Empty transactions with the new paint timing
|
2012-08-13 22:10:10 +12:00 |
|
Matt Woodrow
|
4ac5f68b6f
|
Bug 539356 - Part 8a - Add END_NO_COMPOSITE to EndTransactionFlags and implement in for all LayerManagers. r=roc
|
2012-08-13 22:10:10 +12:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Kan-Ru Chen (陳侃如)
|
ecd566dd4c
|
Bug 767480 - PlanarYCbCrImage Refactoring. r=roc
|
2012-08-21 18:18:20 +08:00 |
|
Kan-Ru Chen (陳侃如)
|
0f4bf67e69
|
Back out c8f7bace9cf9, 17ec4e01c126 (bug 767480) r=bustage
|
2012-08-21 17:55:02 +08:00 |
|
Kan-Ru Chen (陳侃如)
|
31f25ec5f6
|
Bug 767480 - PlanarYCbCrImage refactoring. r=roc
|
2012-08-21 17:31:36 +08:00 |
|
David Anderson
|
1b9c00384c
|
Merge from mozilla-central.
|
2012-07-31 17:19:41 -07:00 |
|
David Anderson
|
0b6251a780
|
Merge from mozilla-central.
|
2012-07-30 13:15:39 -07:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
David Anderson
|
d6601dffce
|
Merge from mozilla-central.
|
2012-07-19 14:34:36 -07:00 |
|
David Zbarsky
|
7f0f075928
|
[Bug 774505] Don't include Layers.h everywhere r=cjones
|
2012-07-18 12:31:40 -04:00 |
|
David Anderson
|
221d873f71
|
Merge from mozilla-central.
|
2012-07-13 19:50:02 -07:00 |
|
Joe Drew
|
1409f2351b
|
Bug 781679 - Assert that we're not in the middle of a transaction when we switch layer managers. r=mattwoodrow
|
2012-08-15 17:55:38 -04:00 |
|
Chris Jones
|
c31a9ea5db
|
Bug 765734, part 4: Add an RAII helper to open/close SurfaceDescriptors and mark usage of SurfaceDescriptor as ReadOnly or ReadWrite. r=BenWa,nrc sr=roc
--HG--
extra : rebase_source : 34d9f4f021bac540e96b82eceb855c9c2ce59ce6
|
2012-07-12 05:51:58 -07:00 |
|
Chris Jones
|
c9d056db8a
|
Bug 765734, part 2: Migrate ImageLayers to SurfaceDescriptor. r=mattwoodrow,roc
--HG--
extra : rebase_source : 19fc8b0ae4cfffdf9a098911deac3b48c2f5d768
|
2012-07-12 05:51:57 -07:00 |
|
David Zbarsky
|
fa3cb43e08
|
Bug 778519 - Don't include Layers.h everywhere Part 2 r=cjones
|
2012-07-30 17:42:26 -07:00 |
|
David Anderson
|
5e98fe788d
|
Merge from mozilla-central.
|
2012-06-26 15:37:34 -07:00 |
|
Nicholas Cameron
|
cae46babd1
|
Bug 757347; checking the format of images. r=roc
|
2012-06-26 14:43:31 +12:00 |
|
Nicholas Cameron
|
fcf7e7a249
|
Bug 757346; Use A8 textures (DX9). r=roc
|
2012-06-26 14:43:31 +12:00 |
|
Nicholas Cameron
|
01224f6b7a
|
Bug 757347; Add a shutdown hook and remove MaskImageFormat(). r=roc
|
2012-06-26 14:43:30 +12:00 |
|
Nicholas Cameron
|
2237afc914
|
Back out bug 757346
--HG--
extra : rebase_source : 8a07c2c56ca9dbc165012b679d421435cc886c2c
|
2012-06-26 10:54:05 +12:00 |
|
Nicholas Cameron
|
3306a285bc
|
Bug 757347; checking the format of images. r=roc
|
2012-06-26 09:44:41 +12:00 |
|
Nicholas Cameron
|
1323f8e540
|
Bug 757346; Use A8 textures (DX9). r=roc
|
2012-06-26 09:44:41 +12:00 |
|
Nicholas Cameron
|
3cd654450f
|
Bug 757347; Add a shutdown hook and remove MaskImageFormat(). r=roc
|
2012-06-26 09:44:41 +12:00 |
|
Nicholas Cameron
|
50b06bd8f2
|
Bug 746883; fix the bustage possibly caused by 746896. r=mattwoodrow
|
2012-07-26 14:30:20 +12:00 |
|
Sean Stangl
|
39170a65fe
|
Merge m-c onto Ionmonkey.
--HG--
rename : accessible/src/atk/nsAccessibleWrap.cpp => accessible/src/atk/AccessibleWrap.cpp
rename : accessible/src/atk/nsAccessibleWrap.h => accessible/src/atk/AccessibleWrap.h
rename : accessible/src/atk/nsDocAccessibleWrap.h => accessible/src/atk/DocAccessibleWrap.h
rename : accessible/src/base/nsAccessible.cpp => accessible/src/generic/Accessible.cpp
rename : accessible/src/base/nsAccessible.h => accessible/src/generic/Accessible.h
rename : accessible/src/base/nsDocAccessible.cpp => accessible/src/generic/DocAccessible.cpp
rename : accessible/src/base/nsDocAccessible.h => accessible/src/generic/DocAccessible.h
rename : accessible/src/mac/nsAccessibleWrap.h => accessible/src/mac/AccessibleWrap.h
rename : accessible/src/mac/nsAccessibleWrap.mm => accessible/src/mac/AccessibleWrap.mm
rename : accessible/src/mac/nsDocAccessibleWrap.h => accessible/src/mac/DocAccessibleWrap.h
rename : accessible/src/mac/nsDocAccessibleWrap.mm => accessible/src/mac/DocAccessibleWrap.mm
rename : accessible/src/msaa/nsAccessibleWrap.cpp => accessible/src/msaa/AccessibleWrap.cpp
rename : accessible/src/msaa/nsDocAccessibleWrap.cpp => accessible/src/msaa/DocAccessibleWrap.cpp
rename : accessible/src/msaa/nsTextAccessibleWrap.cpp => accessible/src/msaa/TextLeafAccessibleWrap.cpp
rename : accessible/src/msaa/nsTextAccessibleWrap.h => accessible/src/msaa/TextLeafAccessibleWrap.h
rename : netwerk/protocol/http/SpdySession.cpp => netwerk/protocol/http/SpdySession2.cpp
rename : netwerk/protocol/http/SpdySession.h => netwerk/protocol/http/SpdySession2.h
rename : netwerk/protocol/http/SpdySession.cpp => netwerk/protocol/http/SpdySession3.cpp
rename : netwerk/protocol/http/SpdySession.h => netwerk/protocol/http/SpdySession3.h
rename : netwerk/protocol/http/SpdyStream.cpp => netwerk/protocol/http/SpdyStream2.cpp
rename : netwerk/protocol/http/SpdyStream.cpp => netwerk/protocol/http/SpdyStream3.cpp
|
2012-05-31 17:17:52 -07:00 |
|
David Anderson
|
54d51b8342
|
Merge from mozilla-central.
|
2012-05-23 14:33:15 -07:00 |
|
David Anderson
|
531c35aeaa
|
Merge from mozilla-central.
|
2012-05-21 14:40:04 -07:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
David Anderson
|
526de59b44
|
Merge from mozilla-central.
--HG--
rename : accessible/src/base/nsRootAccessible.cpp => accessible/src/generic/RootAccessible.cpp
rename : accessible/src/base/nsRootAccessible.h => accessible/src/generic/RootAccessible.h
rename : js/src/jsgcmark.cpp => js/src/gc/Marking.cpp
rename : js/src/jsgcmark.h => js/src/gc/Marking.h
|
2012-05-04 19:16:35 -07:00 |
|
Nicholas Cameron
|
a938e2e825
|
Bug 753784; allow access to the max texture size from FrameLayerBuilder. r=roc
|
2012-05-22 19:15:16 -04:00 |
|