Title: [277609] trunk/Source/WebCore
- Revision
- 277609
- Author
- be...@igalia.com
- Date
- 2021-05-17 15:55:13 -0700 (Mon, 17 May 2021)
Log Message
[GTK] [2.33.1] Fails to build when HAVE_OPENGL_ES_3 is on
https://bugs.webkit.org/show_bug.cgi?id=225867
Reviewed by Adrian Perez de Castro.
Include GLES3/gl3.h if HAVE_OPENGL_ES_3 is set.
* platform/graphics/opengl/ExtensionsGLOpenGLES.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (277608 => 277609)
--- trunk/Source/WebCore/ChangeLog 2021-05-17 22:11:49 UTC (rev 277608)
+++ trunk/Source/WebCore/ChangeLog 2021-05-17 22:55:13 UTC (rev 277609)
@@ -1,3 +1,14 @@
+2021-05-17 Alberto Garcia <be...@igalia.com>
+
+ [GTK] [2.33.1] Fails to build when HAVE_OPENGL_ES_3 is on
+ https://bugs.webkit.org/show_bug.cgi?id=225867
+
+ Reviewed by Adrian Perez de Castro.
+
+ Include GLES3/gl3.h if HAVE_OPENGL_ES_3 is set.
+
+ * platform/graphics/opengl/ExtensionsGLOpenGLES.h:
+
2021-05-17 Alex Christensen <achristen...@webkit.org>
Use kAudioObjectPropertyElementMain where available
Modified: trunk/Source/WebCore/platform/graphics/opengl/ExtensionsGLOpenGLES.h (277608 => 277609)
--- trunk/Source/WebCore/platform/graphics/opengl/ExtensionsGLOpenGLES.h 2021-05-17 22:11:49 UTC (rev 277608)
+++ trunk/Source/WebCore/platform/graphics/opengl/ExtensionsGLOpenGLES.h 2021-05-17 22:55:13 UTC (rev 277609)
@@ -33,6 +33,9 @@
#if USE(LIBEPOXY)
#include <epoxy/gl.h>
#else
+#if HAVE(OPENGL_ES_3)
+#include <GLES3/gl3.h>
+#endif // HAVE(OPENGL_ES_3)
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes