Matt Woodrow
|
2ae71b5171
|
Bug 809273 - Add code handling dual buffers in ThebesLayerBuffer. r=roc
|
2013-04-22 14:40:52 +12:00 |
|
Nicholas Cameron
|
97c38ba23b
|
Bug 862106. Use Create*Client directly. r=nical
|
2013-04-17 09:36:06 +12:00 |
|
Nicholas Cameron
|
913ecb9e12
|
Bug 862064; use PCompositable for tiled layers and add TiledContentClient. r=nical
|
2013-04-17 09:36:06 +12:00 |
|
Nicholas Cameron
|
777d942480
|
Bug 844928, remove PTexture. r=nical
|
2013-04-12 19:28:55 +12:00 |
|
Bas Schouten
|
b439abe1f3
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
|
2013-04-10 09:20:52 +00:00 |
|
Robert O'Callahan
|
94cdb72590
|
Bug 852489. Part 3: Add logging to track addition of IPC edits and causes of layer mutation. Also avoid unnecessary mutate in ClearAnimations. r=mattwoodrow
|
2013-03-22 15:17:28 +13:00 |
|
James Willcox
|
56bc03898f
|
Bug 829747 - Update WebGL canvases asynchronously r=bgirard,jgilbert
|
2013-03-22 15:22:20 -04:00 |
|
Ed Morley
|
4aa6d699c5
|
Backed out changeset b43bbab312e7 (bug 829747) for ABORTs on Android 2.2; CLOSED TREE
|
2013-03-22 19:10:24 +00:00 |
|
James Willcox
|
2e81183593
|
Bug 829747 - Update WebGL canvases asynchronously r=bgirard,jgilbert
|
2013-03-22 12:13:21 -04:00 |
|
Chiajung Hung
|
edb84bc3d3
|
Bug 805939: Wait for shadow trees to update orientation before recompositing. r=cjones
|
2012-11-22 10:40:57 +08:00 |
|
Mark Hammond
|
7a6ea0f95b
|
Backout cf585138ff25 (bug 805939) for Windows build bustage on a CLOSED TREE
|
2012-12-21 15:30:02 +11:00 |
|
Chiajung Hung
|
728ef86c1a
|
Bug 805939: Wait for shadow trees to update orientation before recompositing. r=cjones
|
2012-11-22 10:40:57 +08:00 |
|
Matt Joras
|
7be86c9563
|
Bug 798033 - Removes "using namespace" directive from gfx headers - r=jmuizelaar
|
2012-10-25 16:12:59 -04:00 |
|
Benoit Jacob
|
088f3eac72
|
back out 621cfd13ceaf for build failures
|
2012-10-15 13:34:42 -04:00 |
|
Matt Joras
|
cc4ec68e57
|
Bug 798033 - Removes "using namespace" directive from gfx headers - r=jmuizelaar
|
2012-10-15 13:02:21 -04:00 |
|
Chris Jones
|
26ae54906a
|
Bug 780920, part 3: The ultimate compositor has to draw to the readback surface; shadow layers doesn't have access to all the needed rendering state. r=roc
|
2012-10-04 00:05:24 -07:00 |
|
Ryan VanderMeulen
|
f1a32c144d
|
Backout 0cd12dcf7f8f, 5ff5e81e6de6, and 0ae09da96f63 (bug 740580) due to bug 797391.
|
2012-10-03 22:13:14 -04:00 |
|
George Wright
|
439f0017be
|
Bug 740580 - Add support for Azure DrawTargets to BasicLayers. r=Bas
|
2012-10-02 22:09:12 -04:00 |
|
Karl Tomlinson
|
bf6e8bf7a1
|
b=763449 Finish X requests on mROFrontBuffer before deleting shadow layer r=cjones
|
2012-09-25 16:20:41 +12:00 |
|
Chris Lord
|
127a434e75
|
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 |
|
Matt Woodrow
|
c088bd7c94
|
Bug 779940: Meter layers transactions in addition to composites. r=cjones
|
2012-08-07 14:41:29 +12:00 |
|
Ehsan Akhgari
|
243c878d26
|
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
|
e7dcc5d8c9
|
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
|
9f192bc533
|
Bug 778519 - Don't include Layers.h everywhere Part 2 r=cjones
|
2012-07-30 17:42:26 -07:00 |
|
Mark Finkle
|
b478928a3b
|
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
|
8b4a23fc4c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
David Zbarsky
|
31dbc4959a
|
Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones
|
2012-07-27 13:23:44 -07:00 |
|
Ed Morley
|
4cf7768fb0
|
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
|
2618b628c7
|
Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones
|
2012-07-25 01:48:09 -07:00 |
|
Chris Jones
|
899b7ffef9
|
Bug 776217: Support gecko-implemented screen rotation with omtc. r=roc
|
2012-07-24 12:01:09 -07:00 |
|
Matt Brubeck
|
0e88f3cf5b
|
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
|
28327d30d6
|
Bug 706179: Add support for animations to the Layers API r=roc, dbaron, cjones
|
2012-07-23 17:34:22 -07:00 |
|
Chris Jones
|
d7e52a7566
|
Bug 771350, part 1: Add GLContext::CreateDirectTextureImage and OpenDescriptorForTexturing to more easily support direct texturing without updates. r=vlad
|
2012-07-23 16:58:37 -07:00 |
|
David Zbarsky
|
7f0b27a36b
|
[Bug 774505] Don't include Layers.h everywhere r=cjones
|
2012-07-18 12:31:40 -04:00 |
|
Rafael Ávila de Espíndola
|
7192c786a2
|
Bug 775134 - Remove extra ; r=ehsan.
|
2012-07-18 12:15:47 -04:00 |
|
Chris Jones
|
40b951d80a
|
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 |
|
Nicolas Silva
|
48fba6e085
|
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 |
|
Chris Jones
|
38b53b6b01
|
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
|
2012-07-12 05:51:58 -07:00 |
|
Chris Jones
|
67d65f8961
|
Bug 765734, part 3: Remove unused code. r=mattwoodrow
|
2012-07-12 05:51:57 -07:00 |
|
Chris Jones
|
3f76361ded
|
Bug 765734, part 1: Let clients specify capabilities required of cross-process surfaces. Only MAP_AS_IMAGE_SURFACE needed for now. r=roc
|
2012-07-12 05:51:57 -07:00 |
|
Ali Juma
|
769c3e4ed3
|
Bug 748088 - Part 2: Drawing to a non-default target should happen on the shadow side, not the shadowable side. r=BenWa
|
2012-06-01 08:42:36 -04:00 |
|
Nicholas Cameron
|
189d6e2368
|
Bug 753784; allow access to the max texture size from FrameLayerBuilder. r=roc
|
2012-05-22 19:15:16 -04:00 |
|
Gervase Markham
|
cb6a072c2a
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Nicholas Cameron
|
48de5e73f8
|
Bug 716439; shadow layer support. r=BenWa
|
2012-03-19 12:02:38 +13:00 |
|
Benoit Girard
|
b3f494f3e8
|
Bug 739679 - Part 2.5: Add TiledBuffer IPC code. r=cjones
|
2012-04-13 11:17:39 -04:00 |
|
Chris Lord
|
e62151c626
|
Bug 732917 - Remove ShadowLayers::ShouldDoubleBuffer. r=cjones
This function has been unused since bug #690469.
|
2012-03-17 12:06:29 +00:00 |
|
Ali Juma
|
924f6e0e56
|
Bug 732091 - Part 3: Pass on the isFirstPaint flag from the PresShell to the compositor via the layer manager. r=tnikkel,bgirard
|
2012-03-12 11:50:15 -04:00 |
|
Ehsan Akhgari
|
478ad1a412
|
Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
|
2011-10-17 10:59:28 -04:00 |
|
Oleg Romashin
|
7e015d23dc
|
Bug 693282 - BasicShadowableThebesLayer leaking backBuffers. r=cjones
|
2011-10-10 16:43:56 -07:00 |
|
Matt Brubeck
|
b52acd4a93
|
Back out f7bf7ac18a79 (bug 684826), 3a910924c50c (bug 687367), and 524a6bb8744b (bug 693086) because of Android bustage on a CLOSED TREE
|
2011-10-10 09:47:27 -07:00 |
|