Title: [210074] trunk/Source/WebCore
Revision
210074
Author
[email protected]
Date
2016-12-21 13:24:17 -0800 (Wed, 21 Dec 2016)

Log Message

Extensions3DOpenGL[ES] constructor should not be explicit
https://bugs.webkit.org/show_bug.cgi?id=166296

Reviewed by Darin Adler.

These constructors used to only have one parameter. Now they have two and they're both
mandatory.

* platform/graphics/opengl/Extensions3DOpenGL.h:
* platform/graphics/opengl/Extensions3DOpenGLES.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (210073 => 210074)


--- trunk/Source/WebCore/ChangeLog	2016-12-21 20:34:04 UTC (rev 210073)
+++ trunk/Source/WebCore/ChangeLog	2016-12-21 21:24:17 UTC (rev 210074)
@@ -1,3 +1,16 @@
+2016-12-21  Michael Catanzaro  <[email protected]>
+
+        Extensions3DOpenGL[ES] constructor should not be explicit
+        https://bugs.webkit.org/show_bug.cgi?id=166296
+
+        Reviewed by Darin Adler.
+
+        These constructors used to only have one parameter. Now they have two and they're both
+        mandatory.
+
+        * platform/graphics/opengl/Extensions3DOpenGL.h:
+        * platform/graphics/opengl/Extensions3DOpenGLES.h:
+
 2016-12-21  Eric Carlson  <[email protected]>
 
         [MediaStream] MediaPlayerPrivateMediaStreamAVFObjC::ensureLayer can be called before it has a media stream

Modified: trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.h (210073 => 210074)


--- trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.h	2016-12-21 20:34:04 UTC (rev 210073)
+++ trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.h	2016-12-21 21:24:17 UTC (rev 210074)
@@ -37,7 +37,7 @@
     WTF_MAKE_FAST_ALLOCATED;
 public:
     // This class only needs to be instantiated by GraphicsContext3D implementations.
-    explicit Extensions3DOpenGL(GraphicsContext3D*, bool useIndexedGetString);
+    Extensions3DOpenGL(GraphicsContext3D*, bool useIndexedGetString);
     virtual ~Extensions3DOpenGL();
 
     // Extensions3D methods.

Modified: trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGLES.h (210073 => 210074)


--- trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGLES.h	2016-12-21 20:34:04 UTC (rev 210073)
+++ trunk/Source/WebCore/platform/graphics/opengl/Extensions3DOpenGLES.h	2016-12-21 21:24:17 UTC (rev 210074)
@@ -63,7 +63,7 @@
 class Extensions3DOpenGLES : public Extensions3DOpenGLCommon {
 public:
     // This class only needs to be instantiated by GraphicsContext3D implementations.
-    explicit Extensions3DOpenGLES(GraphicsContext3D*, bool useIndexedGetString);
+    Extensions3DOpenGLES(GraphicsContext3D*, bool useIndexedGetString);
     virtual ~Extensions3DOpenGLES();
 
     virtual void framebufferTexture2DMultisampleIMG(unsigned long target, unsigned long attachment, unsigned long textarget, unsigned int texture, int level, unsigned long samples);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to