Title: [223285] trunk/Source/WebCore
Revision
223285
Author
jer.no...@apple.com
Date
2017-10-13 10:30:36 -0700 (Fri, 13 Oct 2017)

Log Message

Unreviewed build fix; add UNUSED_PARAM macros.

* platform/graphics/cocoa/GraphicsContext3DCocoa.mm:
(WebCore::GraphicsContext3D::texImageIOSurface2D):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (223284 => 223285)


--- trunk/Source/WebCore/ChangeLog	2017-10-13 17:19:06 UTC (rev 223284)
+++ trunk/Source/WebCore/ChangeLog	2017-10-13 17:30:36 UTC (rev 223285)
@@ -1,5 +1,12 @@
 2017-10-13  Jer Noble  <jer.no...@apple.com>
 
+        Unreviewed build fix; add UNUSED_PARAM macros.
+
+        * platform/graphics/cocoa/GraphicsContext3DCocoa.mm:
+        (WebCore::GraphicsContext3D::texImageIOSurface2D):
+
+2017-10-13  Jer Noble  <jer.no...@apple.com>
+
         Performance: do pixel conformance and texturing in a single step.
         https://bugs.webkit.org/show_bug.cgi?id=178219
         <rdar://problem/34937237>

Modified: trunk/Source/WebCore/platform/graphics/cocoa/GraphicsContext3DCocoa.mm (223284 => 223285)


--- trunk/Source/WebCore/platform/graphics/cocoa/GraphicsContext3DCocoa.mm	2017-10-13 17:19:06 UTC (rev 223284)
+++ trunk/Source/WebCore/platform/graphics/cocoa/GraphicsContext3DCocoa.mm	2017-10-13 17:30:36 UTC (rev 223285)
@@ -680,6 +680,14 @@
 #elif PLATFORM(IOS) && !PLATFORM(IOS_SIMULATOR)
     return [platformGraphicsContext3D() texImageIOSurface:surface target:target internalFormat:internalFormat width:width height:height format:format type:type plane:plane];
 #else
+    UNUSED_PARAM(target);
+    UNUSED_PARAM(internalFormat);
+    UNUSED_PARAM(width);
+    UNUSED_PARAM(height);
+    UNUSED_PARAM(format);
+    UNUSED_PARAM(type);
+    UNUSED_PARAM(surface);
+    UNUSED_PARAM(plane);
     return false;
 #endif
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to