Title: [217784] trunk/Source/WebCore
Revision
217784
Author
[email protected]
Date
2017-06-05 09:05:04 -0700 (Mon, 05 Jun 2017)

Log Message

Unreviewed. Fix compile warning when building GTK+ port without OpenGL.

* platform/graphics/texmap/BitmapTexturePool.cpp:
(WebCore::BitmapTexturePool::createTexture):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (217783 => 217784)


--- trunk/Source/WebCore/ChangeLog	2017-06-05 16:03:10 UTC (rev 217783)
+++ trunk/Source/WebCore/ChangeLog	2017-06-05 16:05:04 UTC (rev 217784)
@@ -1,3 +1,10 @@
+2017-06-05  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix compile warning when building GTK+ port without OpenGL.
+
+        * platform/graphics/texmap/BitmapTexturePool.cpp:
+        (WebCore::BitmapTexturePool::createTexture):
+
 2017-06-05  Miguel Gomez  <[email protected]>
 
         [GTK][WPE] Do not force video sample's buffer release when the platformLayerProxy is inactive

Modified: trunk/Source/WebCore/platform/graphics/texmap/BitmapTexturePool.cpp (217783 => 217784)


--- trunk/Source/WebCore/platform/graphics/texmap/BitmapTexturePool.cpp	2017-06-05 16:03:10 UTC (rev 217783)
+++ trunk/Source/WebCore/platform/graphics/texmap/BitmapTexturePool.cpp	2017-06-05 16:05:04 UTC (rev 217784)
@@ -95,6 +95,7 @@
 #if USE(TEXTURE_MAPPER_GL)
     return BitmapTextureGL::create(*m_context3D, flags);
 #else
+    UNUSED_PARAM(flags);
     return nullptr;
 #endif
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to