Title: [211718] trunk/Source/WebCore
Revision
211718
Author
achristen...@apple.com
Date
2017-02-06 00:51:48 -0800 (Mon, 06 Feb 2017)

Log Message

Fix WinCairo build after r211681
https://bugs.webkit.org/show_bug.cgi?id=167096

* platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp:
Include some necessary GLES headers.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (211717 => 211718)


--- trunk/Source/WebCore/ChangeLog	2017-02-06 08:35:26 UTC (rev 211717)
+++ trunk/Source/WebCore/ChangeLog	2017-02-06 08:51:48 UTC (rev 211718)
@@ -1,3 +1,11 @@
+2017-02-06  Alex Christensen  <achristen...@webkit.org>
+
+        Fix WinCairo build after r211681
+        https://bugs.webkit.org/show_bug.cgi?id=167096
+
+        * platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp:
+        Include some necessary GLES headers.
+
 2017-02-05  Wenson Hsieh  <wenson_hs...@apple.com>
 
         Data interaction fails in Safari splitscreen mode when dropping into a contenteditable

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp (211717 => 211718)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp	2017-02-06 08:35:26 UTC (rev 211717)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp	2017-02-06 08:51:48 UTC (rev 211718)
@@ -22,6 +22,11 @@
 
 #if USE(TEXTURE_MAPPER) && !PLATFORM(EFL)
 
+#if USE(OPENGL_ES_2)
+#include <GLES2/gl2.h>
+#include <GLES2/gl2ext.h>
+#endif
+
 #include "BitmapTextureGL.h"
 #include "GLContext.h"
 #include "TextureMapperPlatformLayerBuffer.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to