Isaac Aggrey
|
0cc4b12d36
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05: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
|
ddc3006aef
|
Bug 539356 - Part 12 - Remove unnecessary LayerManagerLayerBuilder indirection. r=roc
|
2012-08-29 17:48:15 +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
|
e978622113
|
Bug 539356 - Part 12 - Remove unnecessary LayerManagerLayerBuilder indirection. r=roc
|
2012-08-29 17:48:15 +12:00 |
|
Matt Woodrow
|
49d4c24594
|
Bug 539356 - Part 9 - Implement DLBI. r=roc,bz,jwatt
|
2012-08-29 17:38:58 +12:00 |
|
Chris Lord
|
ab91d060df
|
Bug 794200 - Progressive draw tiles in the direction of scrolling. r=bgirard
When scrolling downwards, make sure to fill in tiles from the top, upwards
from the bottom, left from the right and right from the left.
|
2012-09-26 21:41:56 +01:00 |
|
Robert O'Callahan
|
e5f6deefdc
|
Bug 777194. Part 1: Use an epsilon tolerance value when comparing residual translations. r=tnikkel
|
2012-08-17 11:38:59 +12:00 |
|
Chris Lord
|
bb517120d3
|
Bug 785333 - Add ContainerLayer::RepositionChild. r=bas
Add a function that can be used to quickly reposition a layer child, rather
than forcing removal/insertion and the extra work that can involve.
|
2012-08-29 11:52:55 +01: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 |
|
David Zbarsky
|
b27894f902
|
Bug 784004 - Don't include Layers.h everywhere Part 3 r=nical
|
2012-08-21 00:06:46 -04:00 |
|
David Zbarsky
|
b59e0492e0
|
Bug 776401 Part 2: Add animation to the layer and then add segments directly to it r=roc
|
2012-08-20 09:35:42 -04:00 |
|
Matt Woodrow
|
22aafcc6f2
|
Bug 778036 - Only mark Layers as Mutated if the property values are different. r=roc
|
2012-08-07 15:00:41 +12:00 |
|
Matt Woodrow
|
53ce1b3577
|
Bug 778036 - Retain RefLayers instead of creating them every frame. r=roc
|
2012-08-07 15:00:41 +12: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 |
|
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 |
|
Chris Lord
|
bd93048cf7
|
Bug 775431 - Make MOZ_DUMP_PAINT_LIST output terminal-friendly. r=mattwoodrow
Only output in HTML if we're dumping to a file, otherwise output as it did
before the HTML output change was made.
|
2012-08-07 18:57:26 +01:00 |
|
Matt Woodrow
|
f19af528e3
|
Bug 778036 - Add Has function to gfx::UserData and use it in Layers to correctly check for existance of user data. r=roc
|
2012-08-03 17:38:44 -07:00 |
|
David Zbarsky
|
02175ccbab
|
Bug 706179 Part 3: Turn on the use of scaling for layers in FrameLayerBuilder r=mattwoodrow
|
2012-08-03 14:29:22 -07:00 |
|
David Zbarsky
|
cc6c8a0c54
|
Bug 706179 Part 1: Add support for animations to the Layers API r=roc, dbaron, cjones
|
2012-07-31 10:28:20 -07:00 |
|
David Zbarsky
|
312c029975
|
Bug 706179 Part 2: Add a BaseTransform and scaling to layers, r=roc, cjones
|
2012-07-30 19:20:00 -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 |
|
Mark Finkle
|
a4d33f44cf
|
Backout 169ff207ed19, a34baed70c1b, f9ccdd490bd7, 39550ed860e6, 2194a2dd66b2, 908eb2e26843, a76e0a267f26 due to mobile viewport bustage (bug 778580)
|
2012-07-30 14:36:12 -04:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
David Zbarsky
|
f537e09f60
|
Bug 778496 - Layer should store ComputedTimingFunction directly rather than as a pointer r=roc
|
2012-07-29 18:59:26 -07:00 |
|
David Zbarsky
|
8bda81abf5
|
Bug 706179 Part 2: Add a BaseTransform to layers r=roc
|
2012-07-27 13:23:45 -07:00 |
|
David Zbarsky
|
4be9dc9473
|
Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones
|
2012-07-27 13:23:44 -07:00 |
|
Ed Morley
|
0981437de6
|
Backout 1244b8a8e57a (bug 755084), 32d16d0f87c9 (bug 706179), 8548e016d4a9 (bug 768440), 697f5b87eae9 (bug 768440), 808fc2bd4e8c (bug 755084), 54b1484cd125 (bug 755084), 876726b632c0 (bug 706179) for xul android R3 failures
|
2012-07-25 16:37:04 +01:00 |
|
David Zbarsky
|
30025de69a
|
Bug 706179 Part 2: Add a BaseTransform to layers to return the layer's transform without scaling applied r=roc
|
2012-07-25 01:48:10 -07:00 |
|
David Zbarsky
|
7d00314751
|
Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones
|
2012-07-25 01:48:09 -07:00 |
|
Matt Brubeck
|
091f852d76
|
Back out f4f5189b1d0c, 3b4f0606c547, b8a5a1ab8a5f, 5078933d6954, 7e0260c45de9 (bug 768440, bug 755084, bug 706179) because of reftest failures
|
2012-07-23 20:25:51 -07:00 |
|
David Zbarsky
|
06e34cc5ee
|
Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones
|
2012-07-23 17:34:22 -07:00 |
|
Matt Woodrow
|
8ecc9d2eaf
|
Bug 741682 - Flatten component alpha layers into their parent layer with BasicLayers. r=roc
|
2012-07-23 15:00:36 +12:00 |
|
David Zbarsky
|
7f0f075928
|
[Bug 774505] Don't include Layers.h everywhere r=cjones
|
2012-07-18 12:31:40 -04:00 |
|
Chris Jones
|
59456326dd
|
Bug 745148, part 7: Create a RefLayer type to temporarily contain a foreign layer subtree during composition. r=BenWa sr=roc
|
2012-07-17 16:59:45 -07:00 |
|
Chris Jones
|
ec578f2342
|
Bug 745148, part 6: Allow layer trees to be given IDs so that the referent can be used in another context. r=ajuma sr=roc
|
2012-07-17 16:59:45 -07:00 |
|
Matt Woodrow
|
3a5b6d4af4
|
Bug 539356 - Part 2 - Add new API to BasicLayers. r=roc
|
2012-07-17 13:03:51 -04:00 |
|
Matt Woodrow
|
4047b6bdf3
|
Bug 539356 - Part 1 - Allow LayerManagers to have multiple user data objects. r=roc
|
2012-07-17 13:03:50 -04:00 |
|
Nicolas Silva
|
aac179cd09
|
Bug 598868: Add support for pushing video frames directly to the compositor thread, bypassing the content thread. r=cjones
|
2012-07-13 15:38:09 -04:00 |
|
Ehsan Akhgari
|
e4d2d195ad
|
Backout changeset 89f35d1fea6c (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:32:33 -04:00 |
|
Ehsan Akhgari
|
03f92ed057
|
Backout changeset 75419010ac02 (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:31:54 -04:00 |
|
Ehsan Akhgari
|
e13dc32085
|
Backout changeset d97bd4246317 (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:26:18 -04:00 |
|
Ehsan Akhgari
|
5c63bf26a2
|
Backout changeset bd0a91621ea9 (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:25:57 -04:00 |
|
Ehsan Akhgari
|
6ef72aef93
|
Backout changeset f568fc280fb0 (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:24:55 -04:00 |
|
Ehsan Akhgari
|
ee77eaaad9
|
Backout changeset 65410094add4 (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:19:18 -04:00 |
|
Ehsan Akhgari
|
0138ec138a
|
Backout changeset cb1ac88bedc2 (bug 539356) because of performance and correctness regressions
|
2012-07-03 20:14:11 -04:00 |
|
Oleg Romashin
|
54721f863f
|
Bug 539356 - Part 20 - Simplify regions to avoid excessive region calculation. r=roc
|
2012-06-30 15:06:13 +12:00 |
|