gecko-dev/dom/canvas
Morris Tseng f3d4ff499f Bug 1379920 - Introduce CanvasRenderer and its derived classes. r=nical,jrmuizel
This patch move common canvas interfaces out of layer. So I create a
base class CanvasRenderer which move interfaces from CanvasLayer.
CopyableCanvasRenderer from CopyableCanvasLayer, ClientCanvasRenderer
from ClientCanvasLayer and WebRenderCanvasRenderer from
WebRenderCanvasLayer. And finally, WebRenderCanvasRendererSync for the
non layers free mode and WebRenderCanvasRendererAsync for the layers
free mode.

Summary all changes in this patch.
* Move class CanvasLayer::Data to CanvasRenderer.h and rename it to
CanvasInitializeData. Because this class not only use by layer but also
* Move BasicCanvasLayer::UpdateSurface to
CopyableCanvasRenderer::ReadbackSurface.
* CanvasClient::Update now accepts ShareableCanvasRenderer as parameter.
not CanvasLayer.
use by layers-free mode. Move it out of layer's class makes more sense.
* Add InitializeCanvasRenderer in the canvas related classes to
initialize CanvasRenderer without involved layer.
* All canvas layer has function "CreateCanvasRendererInternal" that
initialize corresponding CanvasRenderer.

* Description of all CanvasRenderer classes:
** CanvasRenderer: Based classes.
** CopyableCanvasRenderer: Can readback canvas content to a
SourceSurface. Use by BasicCanvasLayer.
** ShareableCanvasRenderer: Provide IPC capabilities that allow sending
canvas content over IPC. This is pure virtual class because the IPC handling is
different in different LayerManager.
** ClientCanvasRenderer: Implement IPC handling for ClientLayerManager.
Use by ClientCanvasLayer.
** WebRenderCanvasRenderer: Implement IPC handling for
WebRenderLayerManager.
** WebRenderCanvasRendererSync: Use by WebRenderCanvasLayer.
** WebRenderCanvasRendererAsync: Use by layers-free mode in WebRender.

class diagram shows below:

                      +--------------+
                      |CanvasRenderer|
                      +-------+------+
                              ^
                              |
                  +----------------------+
                  |CopyableCanvasRenderer|
                  +----------------------+
                              ^
                              |
                  +-----------+-----------+
                  |ShareableCanvasRenderer|
                  +-----+-----------------+
                        ^      ^
          +-------------+      +-------+
          |                            |
+--------------------+       +---------+-------------+
|ClientCanvasRenderer|       |WebRenderCanvasRenderer|
+--------------------+       +--------+--+-----------+
                                      ^  ^
              +-----------------------+  +----+
              |                               |
+-------------+-------------+   +-------------+--------------+
|WebRenderCanvasRendererSync|   |WebRenderCanvasRendererAsync|
+---------------------------+   +----------------------------+

MozReview-Commit-ID: 5hqQ19W169r
2017-08-03 13:55:14 +08:00
..
crashtests Bug 1305085 - don't let SkScalerContext::computeMatrices generate zero scales. r=mchang 2017-06-14 21:43:27 -04:00
gtest Bug 1339256 - Simplify index validation. - r=kvark 2017-03-09 18:57:43 -08:00
test Bug 1373515 - Revert Bug 1363673. r=smaug 2017-07-26 18:44:19 +08:00
BasicRenderingContext2D.h Bug 1382027. Allow using an SVGImageElement as a CanvasImageSource. r=mystor 2017-07-19 11:48:49 -04:00
CanvasGradient.h Bug 1275693 - Refactor <canvas> fillText drawing to re-use gfxTextRun::Draw. r=jfkthame 2016-07-13 19:07:00 +02:00
CanvasImageCache.cpp Bug 1293117 (part 4) - Change many NS_IMETHODIMP occurrences to NS_IMETHOD. r=froydnj. 2016-08-08 10:54:47 +10:00
CanvasImageCache.h Bug 1267260 - Change CanvasImageCache to lookup cache images based on imgIContainer instead of imgIRequest. r=seth 2016-05-10 08:00:06 -07:00
CanvasPath.h Bug 1298756 - Use uint8_t/uint16_t as underlying type for enums from webidl. r=bz 2017-01-12 12:23:37 +11:00
CanvasPattern.h Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat 2015-10-18 01:24:48 -04:00
CanvasRenderingContext2D.cpp Bug 1379920 - Introduce CanvasRenderer and its derived classes. r=nical,jrmuizel 2017-08-03 13:55:14 +08:00
CanvasRenderingContext2D.h Bug 1379920 - Introduce CanvasRenderer and its derived classes. r=nical,jrmuizel 2017-08-03 13:55:14 +08:00
CanvasRenderingContextHelper.cpp Bug 1370727 - Return void from nsICanvasRenderingContextInternal::SetIsOpaque r=bz 2017-06-09 12:15:42 -07:00
CanvasRenderingContextHelper.h Merge m-c to autoland 2016-11-03 20:02:24 -07:00
CanvasUtils.cpp Bug 1341459 - Remove MOZ_WEBGL_CONFORMANT. - r=jrmuizel 2017-02-22 14:55:34 -08:00
CanvasUtils.h Bug 1310318 - Part 1: Allow access to canvas drawWindow() with web extensions permission r=bz 2017-02-01 21:47:59 +01:00
DocumentRendererChild.cpp Bug 1088760 - Remove nsRenderingContext, replacing all of its uses with gfxContext. r=jwatt,jrmuizel 2017-06-13 11:00:10 -04:00
DocumentRendererChild.h Bug 1088760 - Remove nsRenderingContext, replacing all of its uses with gfxContext. r=jwatt,jrmuizel 2017-06-13 11:00:10 -04:00
DocumentRendererParent.cpp Bug 1314254 - Add mozilla::ipc::IPCResult type and convert IPDL handlers to use new return type. r=billm 2016-11-15 04:26:00 +01:00
DocumentRendererParent.h Bug 1088760 - Remove nsRenderingContext, replacing all of its uses with gfxContext. r=jwatt,jrmuizel 2017-06-13 11:00:10 -04:00
ImageBitmap.cpp Bug 1372405 - Provide names for all runnables in the tree (r=froydnj) 2017-06-26 14:19:58 -07:00
ImageBitmap.h Bug 1355763 - Add gfxAlphaType for specifying opaque/premult/non-premult. - r=daoshengmu 2017-04-13 09:14:34 -07:00
ImageBitmapColorUtils.cpp Bug 738343 - part 4 - Use Moz2d swizzles in Canvas2D. r=jrmuizel 2017-02-12 09:27:39 -05:00
ImageBitmapColorUtils.h Bug 1141979 - part6 - implement ImageBitmapFormatUtils; r=jrmuizel 2016-05-30 15:48:02 +08:00
ImageBitmapRenderingContext.cpp Bug 1370727 - Return void from nsICanvasRenderingContextInternal::SetIsOpaque r=bz 2017-06-09 12:15:42 -07:00
ImageBitmapRenderingContext.h Bug 1370727 - Return void from nsICanvasRenderingContextInternal::SetIsOpaque r=bz 2017-06-09 12:15:42 -07:00
ImageBitmapSource.h Bug 1141979 - part1 - WebIDL for native implementation; r=jrmuizel, r=smaug 2015-11-18 16:57:38 +08:00
ImageBitmapUtils.cpp Bug 1339537 - Part 6: Pass std::function values tree by const reference instead of by value, r=ehsan 2017-04-27 12:44:57 -04:00
ImageBitmapUtils.h Bug 1141979 - part6 - implement ImageBitmapFormatUtils; r=jrmuizel 2016-05-30 15:48:02 +08:00
ImageData.cpp Bug 1326507, remove NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS, r=mccr8 2017-01-03 21:47:55 +02:00
ImageData.h Bug 1323042 - forbid MOZ_COUNT_{CTOR,DTOR} for nsISupports classes; r=froydnj 2016-12-12 09:27:58 -05:00
ImageUtils.cpp Bug 1338086 - Remove useless else blocks in order to reduce complexity in dom/canvas r=baku 2017-02-09 10:29:26 +01:00
ImageUtils.h Bug 1298756 - Use uint8_t/uint16_t as underlying type for enums from webidl. r=bz 2017-01-12 12:23:37 +11:00
MurmurHash3.cpp Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
MurmurHash3.h
OffscreenCanvas.cpp Bug 1365099 - Convert NS_GetCurrentThread uses in gfx (r=dvander) 2017-06-12 20:20:08 -07:00
OffscreenCanvas.h Bug 1377169 - Turn gfxRect into a typedef. r=jrmuizel 2017-07-05 11:22:00 -04:00
TexUnpackBlob.cpp Bug 1382185 - Check the status of GLContext::MakeCurrent in TexUnpackBlob.cpp. r=jgilber 2017-07-24 12:24:25 +02:00
TexUnpackBlob.h Backed out changeset 91f89d105e2f (bug 1372385) for unexpected passes of test_2_conformance__textures__misc__tex-image-with-format-and-type.html on OS X 2017-06-22 22:23:59 -07:00
TextMetrics.h
WebGL1Context.cpp Bug 1308057 - Merge WebGLTimerQuery into WebGLQuery. - r=ethlin 2016-11-14 14:04:41 -08:00
WebGL1Context.h Bug 1330022 - Remove trivial ValidateUniformMatrixTranspose virtual. - r=kvark 2017-02-13 15:37:57 -08:00
WebGL2Context.cpp Bug 1326159 - Update TF buffer restrictions. - r=daoshengmu 2016-12-30 03:30:13 -08:00
WebGL2Context.h Bug 1330022 - Remove trivial ValidateUniformMatrixTranspose virtual. - r=kvark 2017-02-13 15:37:57 -08:00
WebGL2ContextBuffers.cpp Bug 1326159 - Update TF buffer restrictions. - r=daoshengmu 2016-12-30 03:30:13 -08:00
WebGL2ContextFramebuffers.cpp Bug 1325301 (flattened) - Validate attribute base types match data base types. - r=bz,daoshengmu 2016-12-29 02:46:46 -08:00
WebGL2ContextMRTs.cpp Bug 1384233 - Remove SizePrintfMacros.h. r=froydnj 2017-07-26 16:03:57 -04:00
WebGL2ContextPrograms.cpp Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGL2ContextQueries.cpp Bug 1381253 - Remove redundant control flow declarations rs=ehsan 2017-07-15 19:03:04 +02:00
WebGL2ContextRenderbuffers.cpp Bug 1236787 - Check internalformat to pass getInternalformatParameter in gl-object-get-calls.html (2.0); r=jgilbert 2016-07-14 11:27:27 +08:00
WebGL2ContextSamplers.cpp Bug 1325301 (flattened) - Validate attribute base types match data base types. - r=bz,daoshengmu 2016-12-29 02:46:46 -08:00
WebGL2ContextState.cpp Bug 1324626 - Pick a MAX_CLIENT_WAIT_TIMEOUT_WEBGL. - r=lenzak800 2016-12-20 13:20:07 -08:00
WebGL2ContextSync.cpp Bug 1324626 - Pick a MAX_CLIENT_WAIT_TIMEOUT_WEBGL. - r=lenzak800 2016-12-20 13:20:07 -08:00
WebGL2ContextTextures.cpp Bug 1313541 - Rewrite TexImageSource glue. - r=ethlin 2016-10-31 15:03:24 -07:00
WebGL2ContextTransformFeedback.cpp Bug 1326159 - Update TF buffer restrictions. - r=daoshengmu 2016-12-30 03:30:13 -08:00
WebGL2ContextUniforms.cpp Bug 1330022 - Remove trivial ValidateUniformMatrixTranspose virtual. - r=kvark 2017-02-13 15:37:57 -08:00
WebGL2ContextVAOs.cpp
WebGLActiveInfo.cpp Bug 1286768 - Fix num used attrib locations for matrix types. - r=mtseng 2016-07-18 00:20:51 -07:00
WebGLActiveInfo.h Bug 1286768 - Fix num used attrib locations for matrix types. - r=mtseng 2016-07-18 00:20:51 -07:00
WebGLBuffer.cpp Bug 1367919 - Add tracking for data allocation calls in WebGL. r=jgilbert 2017-06-22 14:32:00 -04:00
WebGLBuffer.h Bug 1339256 - Simplify index validation. - r=kvark 2017-03-09 18:57:43 -08:00
WebGLContext.cpp Bug 1379920 - Introduce CanvasRenderer and its derived classes. r=nical,jrmuizel 2017-08-03 13:55:14 +08:00
WebGLContext.h Bug 1379920 - Introduce CanvasRenderer and its derived classes. r=nical,jrmuizel 2017-08-03 13:55:14 +08:00
WebGLContextBuffers.cpp Bug 1339256 - Simplify index validation. - r=kvark 2017-03-09 18:57:43 -08:00
WebGLContextDraw.cpp Bug 1339256 - Simplify index validation. - r=kvark 2017-03-09 18:57:43 -08:00
WebGLContextExtensions.cpp Bug 1377974 - WEBGL_debug_shaders extension should always be enabled. r=jgilbert 2017-07-18 14:41:00 -04:00
WebGLContextFramebufferOperations.cpp Bug 1326385 - Handle undefined images in BlitFramebuffer. - r=kvark 2017-01-02 02:29:24 -08:00
WebGLContextGL.cpp Backed out changeset 6e571ab7b558 (bug 1382104) for asserting at dom/canvas/WebGLContextUtils.cpp:714 in browser-chrome tests and failing GTest's Gfx.CompositorSimpleTree. r=backout 2017-07-19 09:53:13 +02:00
WebGLContextLossHandler.cpp Bug 1382172 - Name nsITimerCallback instances in native implementation. r=billm 2017-07-27 02:18:20 +08:00
WebGLContextLossHandler.h Bug 1365097 - Convert NS_GetCurrentThread uses in dom (except for dom/media) (r=smaug) 2017-06-12 20:20:08 -07:00
WebGLContextNotSupported.cpp
WebGLContextState.cpp Bug 1384835 (part 1, attempt 2) - Use nsA[C]String references instead of pointers for outparams of Get*String() pref functions. r=froydnj. 2017-07-31 10:52:51 +10:00
WebGLContextTextures.cpp Bug 1325476 - Use helper for Parameter[fi] funcs instead of maybeFloat/IntParam. - r=daoshengmu 2016-12-25 13:44:38 -08:00
WebGLContextUnchecked.cpp Bug 1318507 - Update sampler entrypoints to be non-nullable, and drop trivial WebGLContextUnchecked usages. - r=ethlin 2016-11-22 23:59:26 -08:00
WebGLContextUnchecked.h Bug 1318507 - Update sampler entrypoints to be non-nullable, and drop trivial WebGLContextUnchecked usages. - r=ethlin 2016-11-22 23:59:26 -08:00
WebGLContextUtils.cpp Backed out changeset 6e571ab7b558 (bug 1382104) for asserting at dom/canvas/WebGLContextUtils.cpp:714 in browser-chrome tests and failing GTest's Gfx.CompositorSimpleTree. r=backout 2017-07-19 09:53:13 +02:00
WebGLContextUtils.h Bug 1335296 - Expand about:support WebGL information. - r=qdot,daoshengmu,jrmuizel 2017-02-02 16:50:19 -08:00
WebGLContextValidate.cpp Bug 1376039 - Convert ValidateBlendFuncEnum to static func. r=jgilbert 2017-06-23 17:31:05 -07:00
WebGLContextVertexArray.cpp Bug 1326159 - Update TF buffer restrictions. - r=daoshengmu 2016-12-30 03:30:13 -08:00
WebGLContextVertices.cpp Bug 1331434 - Part 9: Return after ErrorResult::Throw in /dom, r=ehsan 2017-03-07 19:06:48 -05:00
WebGLExtensionBase.cpp Bug 1274769 - handle the WebGLTimerQuery deletion status for GLContext cleanup. r=jgilbert 2016-05-24 18:52:00 +02:00
WebGLExtensionBlendMinMax.cpp
WebGLExtensionColorBufferFloat.cpp Bug 1265676 - Fix other callsites. - r=ethlin 2016-07-08 15:25:58 -07:00
WebGLExtensionColorBufferHalfFloat.cpp Bug 1265676 - Fix other callsites. - r=ethlin 2016-07-08 15:25:58 -07:00
WebGLExtensionCompressedTextureASTC.cpp Bug 1250077 - Implement WEBGL_compressed_texture_astc. - r=ethlin 2016-11-28 18:12:32 -08:00
WebGLExtensionCompressedTextureATC.cpp Bug 1288649 - Fix non-unified-build errors. - r=ethlin 2016-07-25 14:46:20 -07:00
WebGLExtensionCompressedTextureES3.cpp Bug 1316778 - Update ES3 compressed format ext name to _etc. - r=ethlin 2016-11-14 14:00:12 -08:00
WebGLExtensionCompressedTextureETC1.cpp Bug 1288649 - Fix non-unified-build errors. - r=ethlin 2016-07-25 14:46:20 -07:00
WebGLExtensionCompressedTexturePVRTC.cpp Bug 1288649 - Fix non-unified-build errors. - r=ethlin 2016-07-25 14:46:20 -07:00
WebGLExtensionCompressedTextureS3TC.cpp Bug 1325113 - Implement support for WEBGL_compressed_texture_s3tc_srgb - r=jgilbert,qdot 2017-06-08 14:54:37 -07:00
WebGLExtensionCompressedTextureS3TC_SRGB.cpp Bug 1325113 - Implement support for WEBGL_compressed_texture_s3tc_srgb - r=jgilbert,qdot 2017-06-08 14:54:37 -07:00
WebGLExtensionDebugRendererInfo.cpp
WebGLExtensionDebugShaders.cpp Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLExtensionDepthTexture.cpp Bug 1291083 - Explicitly make WEBGL_depth_texture formats filterable. - r=mtseng 2016-08-03 12:24:47 -07:00
WebGLExtensionDisjointTimerQuery.cpp Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLExtensionDrawBuffers.cpp Bug 1300932 - Enable draw_buffers on ES3, but not WEBGL_draw_buffers. - r=jerry 2016-09-08 11:34:32 -07:00
WebGLExtensionEXTColorBufferFloat.cpp Bug 1265676 - Fix other callsites. - r=ethlin 2016-07-08 15:25:58 -07:00
WebGLExtensionElementIndexUint.cpp Bug 1288649 - Fix non-unified-build errors. - r=ethlin 2016-07-25 14:46:20 -07:00
WebGLExtensionFragDepth.cpp
WebGLExtensionInstancedArrays.cpp
WebGLExtensionLoseContext.cpp
WebGLExtensionMOZDebug.cpp Bug 1355430 - Part1: s/MOZ_debug_get/MOZ_debug; r=baku,jgilbert 2017-04-11 16:50:59 +08:00
WebGLExtensionSRGB.cpp Bug 1265676 - Fix other callsites. - r=ethlin 2016-07-08 15:25:58 -07:00
WebGLExtensionShaderTextureLod.cpp Bug 1288649 - Fix non-unified-build errors. - r=ethlin 2016-07-25 14:46:20 -07:00
WebGLExtensionStandardDerivatives.cpp Bug 1288649 - Fix non-unified-build errors. - r=ethlin 2016-07-25 14:46:20 -07:00
WebGLExtensionTextureFilterAnisotropic.cpp Bug 1288649 - Fix non-unified-build errors. - r=ethlin 2016-07-25 14:46:20 -07:00
WebGLExtensionTextureFloat.cpp Bug 1233046 - Fix OES_texture_float on OSX. - r=jrmuizel 2016-01-28 14:27:57 -08:00
WebGLExtensionTextureFloatLinear.cpp Bug 1288649 - Fix non-unified-build errors. - r=ethlin 2016-07-25 14:46:20 -07:00
WebGLExtensionTextureHalfFloat.cpp Bug 1233046 - Fix OES_texture_float on OSX. - r=jrmuizel 2016-01-28 14:27:57 -08:00
WebGLExtensionTextureHalfFloatLinear.cpp Bug 1288649 - Fix non-unified-build errors. - r=ethlin 2016-07-25 14:46:20 -07:00
WebGLExtensionVertexArray.cpp Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLExtensions.h Bug 1325113 - Implement support for WEBGL_compressed_texture_s3tc_srgb - r=jgilbert,qdot 2017-06-08 14:54:37 -07:00
WebGLFormats.cpp Bug 1325113 - Implement support for WEBGL_compressed_texture_s3tc_srgb - r=jgilbert,qdot 2017-06-08 14:54:37 -07:00
WebGLFormats.h Bug 1325113 - Implement support for WEBGL_compressed_texture_s3tc_srgb - r=jgilbert,qdot 2017-06-08 14:54:37 -07:00
WebGLFramebuffer.cpp Bug 1381610 - Check bindRenderbuffer called before framebufferRenderbuffer. r=jgilbert 2017-07-17 16:52:00 -04:00
WebGLFramebuffer.h Bug 1373007 - WebGL 1.04 extensions/webgl-draw-buffers-framebuffer-unsupported. r=jgilbert 2017-06-22 14:45:11 -07:00
WebGLFramebufferAttachable.cpp Bug 1329815 - GeneratePerfWarning and warn on completed-FB invalidation. - r=kvark 2017-01-17 17:44:56 -08:00
WebGLFramebufferAttachable.h Bug 1329815 - GeneratePerfWarning and warn on completed-FB invalidation. - r=kvark 2017-01-17 17:44:56 -08:00
WebGLInternalFormatsTable.h
WebGLMemoryTracker.cpp Bug 1297658 - Avoid unnecessary checking in memory reporters. r=erahm. 2016-08-24 15:23:45 +10:00
WebGLMemoryTracker.h Bug 1182371 - Misc WebGL cleanup. - r=kamidphish 2015-07-14 17:37:28 -07:00
WebGLObjectModel.cpp Bug 1308057 - Merge WebGLTimerQuery into WebGLQuery. - r=ethlin 2016-11-14 14:04:41 -08:00
WebGLObjectModel.h Bug 1320030 - Handle program and shader object deletion differently. - r=ethlin 2016-12-07 01:35:42 -08:00
WebGLProgram.cpp Bug 1384233 - Remove SizePrintfMacros.h. r=froydnj 2017-07-26 16:03:57 -04:00
WebGLProgram.h Bug 1326159 - Update TF buffer restrictions. - r=daoshengmu 2016-12-30 03:30:13 -08:00
WebGLQuery.cpp Bug 1372405 - Provide names for all runnables in the tree (r=froydnj) 2017-06-26 14:19:58 -07:00
WebGLQuery.h Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLRenderbuffer.cpp Bug 1367919 - Add tracking for data allocation calls in WebGL. r=jgilbert 2017-06-22 14:32:00 -04:00
WebGLRenderbuffer.h Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLSampler.cpp Bug 1325301 (flattened) - Validate attribute base types match data base types. - r=bz,daoshengmu 2016-12-29 02:46:46 -08:00
WebGLSampler.h Bug 1325476 - Use helper for Parameter[fi] funcs instead of maybeFloat/IntParam. - r=daoshengmu 2016-12-25 13:44:38 -08:00
WebGLShader.cpp Bug 1384233 - Remove SizePrintfMacros.h. r=froydnj 2017-07-26 16:03:57 -04:00
WebGLShader.h Bug 1325699 (flattened) - Fix uniform block handling. - r=daoshengmu 2016-12-29 02:47:08 -08:00
WebGLShaderPrecisionFormat.cpp Bug 1182371 - Misc WebGL cleanup. - r=kamidphish 2015-07-14 17:37:28 -07:00
WebGLShaderPrecisionFormat.h Bug 1182371 - Misc WebGL cleanup. - r=kamidphish 2015-07-14 17:37:28 -07:00
WebGLShaderValidator.cpp Bug 1382358 - Allow unusual/spurious glsl versions in non-DEBUG builds. - r=kvark 2017-07-19 18:04:03 -07:00
WebGLShaderValidator.h Bug 1325699 (flattened) - Fix uniform block handling. - r=daoshengmu 2016-12-29 02:47:08 -08:00
WebGLStrongTypes.h Bug 1325113 - Implement support for WEBGL_compressed_texture_s3tc_srgb - r=jgilbert,qdot 2017-06-08 14:54:37 -07:00
WebGLSync.cpp Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLSync.h Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLTexelConversions.cpp Bug 1381253 - Remove redundant control flow declarations rs=ehsan 2017-07-15 19:03:04 +02:00
WebGLTexelConversions.h Bug 1276093 - Warn on slow CPU format conversions. - r=jrmuizel 2016-05-31 19:33:22 -07:00
WebGLTexture.cpp Bug 1377827 - Don't try to initialize texture data unless the texture is otherwise complete. - r=daoshengmu 2017-07-03 15:39:59 -07:00
WebGLTexture.h Bug 1329815 - GeneratePerfWarning and warn on completed-FB invalidation. - r=kvark 2017-01-17 17:44:56 -08:00
WebGLTextureUpload.cpp Bug 1384233 - Remove SizePrintfMacros.h. r=froydnj 2017-07-26 16:03:57 -04:00
WebGLTransformFeedback.cpp Bug 1330022 - Remove trivial ValidateUniformMatrixTranspose virtual. - r=kvark 2017-02-13 15:37:57 -08:00
WebGLTransformFeedback.h Bug 1326159 - Update TF buffer restrictions. - r=daoshengmu 2016-12-30 03:30:13 -08:00
WebGLTypes.h Bug 1325113 - Implement support for WEBGL_compressed_texture_s3tc_srgb - r=jgilbert,qdot 2017-06-08 14:54:37 -07:00
WebGLUniformLocation.cpp Bug 1384233 - Remove SizePrintfMacros.h. r=froydnj 2017-07-26 16:03:57 -04:00
WebGLUniformLocation.h Bug 1318507 - Update implementation. - r=ethlin 2016-11-22 23:59:24 -08:00
WebGLValidateStrings.cpp Bug 1325995 - Misc fixes. 2017-01-04 00:41:06 -08:00
WebGLValidateStrings.h Bug 1325995 - Do our own GLSL char validity checks based on ESSL3 rules. - r=daoshengmu 2017-01-04 00:41:00 -08:00
WebGLVertexArray.cpp Bug 1326159 - Update TF buffer restrictions. - r=daoshengmu 2016-12-30 03:30:13 -08:00
WebGLVertexArray.h Bug 1326159 - Update TF buffer restrictions. - r=daoshengmu 2016-12-30 03:30:13 -08:00
WebGLVertexArrayFake.cpp Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLVertexArrayFake.h Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLVertexArrayGL.cpp Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLVertexArrayGL.h Bug 1320030 - Simplify marking and deletion checks. - r=ethlin 2016-12-07 01:35:28 -08:00
WebGLVertexArrayObject.cpp Bug 1277027 - fix MOZ_CRASH to have GFX prefix in webGL code r=BenWa,milan 2016-06-06 11:17:23 -04:00
WebGLVertexArrayObject.h
WebGLVertexAttribData.cpp Bug 1326159 - Update TF buffer restrictions. - r=daoshengmu 2016-12-30 03:30:13 -08:00
WebGLVertexAttribData.h Bug 1325301 (flattened) - Validate attribute base types match data base types. - r=bz,daoshengmu 2016-12-29 02:46:46 -08:00
moz.build Bug 1382718 - Expose ImageUtils.h so utils can be used more widely. r=mattwoodrow 2017-07-24 08:59:42 +12:00
nsICanvasRenderingContextInternal.h Bug 1379920 - Introduce CanvasRenderer and its derived classes. r=nical,jrmuizel 2017-08-03 13:55:14 +08:00