Title: [210128] trunk/Source/WebCore
Revision
210128
Author
[email protected]
Date
2016-12-22 18:21:02 -0800 (Thu, 22 Dec 2016)

Log Message

Unreviewed, fix unused parameter warning in GLES build

Looks like it's been here since 2012. Impressive!

* platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp:
(WebCore::GraphicsContext3D::resolveMultisamplingIfNecessary):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (210127 => 210128)


--- trunk/Source/WebCore/ChangeLog	2016-12-23 02:14:31 UTC (rev 210127)
+++ trunk/Source/WebCore/ChangeLog	2016-12-23 02:21:02 UTC (rev 210128)
@@ -1,3 +1,12 @@
+2016-12-22  Michael Catanzaro  <[email protected]>
+
+        Unreviewed, fix unused parameter warning in GLES build
+
+        Looks like it's been here since 2012. Impressive!
+
+        * platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp:
+        (WebCore::GraphicsContext3D::resolveMultisamplingIfNecessary):
+
 2016-12-22  Alex Christensen  <[email protected]>
 
         Move GraphicsContext3DWin to GraphicsContext3DOpenGLES

Modified: trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp (210127 => 210128)


--- trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp	2016-12-23 02:14:31 UTC (rev 210127)
+++ trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp	2016-12-23 02:21:02 UTC (rev 210128)
@@ -186,7 +186,7 @@
     return mustRestoreFBO;
 }
 
-void GraphicsContext3D::resolveMultisamplingIfNecessary(const IntRect& rect)
+void GraphicsContext3D::resolveMultisamplingIfNecessary(const IntRect&)
 {
     // FIXME: We don't support antialiasing yet.
     notImplemented();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to