Title: [158300] trunk/Source/WebCore
- Revision
- 158300
- Author
- [email protected]
- Date
- 2013-10-30 12:07:45 -0700 (Wed, 30 Oct 2013)
Log Message
Build fails with EGLConfigSelector.cpp when OpenGL ES is not used
https://bugs.webkit.org/show_bug.cgi?id=119037
Patch by Dong-Gwan Kim <[email protected]> on 2013-10-30
Reviewed by Brent Fulgham.
Build fix for EGLConfigSelector.cpp
No new tests, no behavior change.
* platform/graphics/surfaces/egl/EGLConfigSelector.cpp:
(WebCore::EGLConfigSelector::createConfig):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (158299 => 158300)
--- trunk/Source/WebCore/ChangeLog 2013-10-30 19:03:45 UTC (rev 158299)
+++ trunk/Source/WebCore/ChangeLog 2013-10-30 19:07:45 UTC (rev 158300)
@@ -1,3 +1,17 @@
+2013-10-30 Dong-Gwan Kim <[email protected]>
+
+ Build fails with EGLConfigSelector.cpp when OpenGL ES is not used
+ https://bugs.webkit.org/show_bug.cgi?id=119037
+
+ Reviewed by Brent Fulgham.
+
+ Build fix for EGLConfigSelector.cpp
+
+ No new tests, no behavior change.
+
+ * platform/graphics/surfaces/egl/EGLConfigSelector.cpp:
+ (WebCore::EGLConfigSelector::createConfig):
+
2013-10-30 Thiago de Barros Lacerda <[email protected]>
Explicitly initialize base class in MediStreamTrackPrivate copy constructor
Modified: trunk/Source/WebCore/platform/graphics/surfaces/egl/EGLConfigSelector.cpp (158299 => 158300)
--- trunk/Source/WebCore/platform/graphics/surfaces/egl/EGLConfigSelector.cpp 2013-10-30 19:03:45 UTC (rev 158299)
+++ trunk/Source/WebCore/platform/graphics/surfaces/egl/EGLConfigSelector.cpp 2013-10-30 19:07:45 UTC (rev 158300)
@@ -113,7 +113,7 @@
#if USE(OPENGL_ES_2)
EGLint expectedRenderType = EGL_OPENGL_ES2_BIT;
#else
- EGLint expectedRenderType = EGL_OPENGL_BIT,
+ EGLint expectedRenderType = EGL_OPENGL_BIT;
#endif
for (int i = 0; i < numConfigs; i++) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes