Title: [161693] trunk/Source/WebCore
- Revision
- 161693
- Author
- [email protected]
- Date
- 2014-01-10 16:17:20 -0800 (Fri, 10 Jan 2014)
Log Message
iOS doesn't have <OpenGL/gl.h>; fix iOS build.
* platform/graphics/opengl/TemporaryOpenGLSetting.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (161692 => 161693)
--- trunk/Source/WebCore/ChangeLog 2014-01-11 00:16:25 UTC (rev 161692)
+++ trunk/Source/WebCore/ChangeLog 2014-01-11 00:17:20 UTC (rev 161693)
@@ -1,3 +1,9 @@
+2014-01-10 Simon Fraser <[email protected]>
+
+ iOS doesn't have <OpenGL/gl.h>; fix iOS build.
+
+ * platform/graphics/opengl/TemporaryOpenGLSetting.cpp:
+
2014-01-10 Andy Estes <[email protected]>
[iOS] Build Fix: Properly add $SDKROOT/usr/local/include/ to the search path when building PublicDOMInterfaces.h
Modified: trunk/Source/WebCore/platform/graphics/opengl/TemporaryOpenGLSetting.cpp (161692 => 161693)
--- trunk/Source/WebCore/platform/graphics/opengl/TemporaryOpenGLSetting.cpp 2014-01-11 00:16:25 UTC (rev 161692)
+++ trunk/Source/WebCore/platform/graphics/opengl/TemporaryOpenGLSetting.cpp 2014-01-11 00:17:20 UTC (rev 161693)
@@ -32,6 +32,8 @@
#if USE(OPENGL_ES_2)
#include <GLES2/gl2.h>
#include "OpenGLESShims.h"
+#elif PLATFORM(IOS)
+#include <OpenGLES/ES2/gl.h>
#elif PLATFORM(MAC)
#include <OpenGL/gl.h>
#elif PLATFORM(GTK) || PLATFORM(EFL) || PLATFORM(WIN) || PLATFORM(NIX)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes