Title: [152276] trunk/Source/WebCore
Revision
152276
Author
achristen...@apple.com
Date
2013-07-01 18:01:42 -0700 (Mon, 01 Jul 2013)

Log Message

Windows should be included in the list of platforms that can use OpenGL ES 2.
https://bugs.webkit.org/show_bug.cgi?id=118264

Reviewed by Dean Jackson.

* platform/graphics/GraphicsContext3D.h: Added PLATFORM(WIN) to platforms using OpenGL ES 2.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (152275 => 152276)


--- trunk/Source/WebCore/ChangeLog	2013-07-02 01:00:38 UTC (rev 152275)
+++ trunk/Source/WebCore/ChangeLog	2013-07-02 01:01:42 UTC (rev 152276)
@@ -1,3 +1,12 @@
+2013-07-01  Alex Christensen  <achristen...@apple.com>
+
+        Windows should be included in the list of platforms that can use OpenGL ES 2.
+        https://bugs.webkit.org/show_bug.cgi?id=118264
+
+        Reviewed by Dean Jackson.
+
+        * platform/graphics/GraphicsContext3D.h: Added PLATFORM(WIN) to platforms using OpenGL ES 2.
+
 2013-07-01  Gustavo Noronha Silva  <gustavo.noro...@collabora.com>
 
         [GTK] Remove unsupported AC backends

Modified: trunk/Source/WebCore/platform/graphics/GraphicsContext3D.h (152275 => 152276)


--- trunk/Source/WebCore/platform/graphics/GraphicsContext3D.h	2013-07-02 01:00:38 UTC (rev 152275)
+++ trunk/Source/WebCore/platform/graphics/GraphicsContext3D.h	2013-07-02 01:01:42 UTC (rev 152276)
@@ -1018,7 +1018,7 @@
     ANGLEWebKitBridge m_compiler;
 #endif
 
-#if PLATFORM(BLACKBERRY) || (PLATFORM(QT) && defined(QT_OPENGL_ES_2)) || ((PLATFORM(GTK) || PLATFORM(EFL)) && USE(OPENGL_ES_2))
+#if PLATFORM(BLACKBERRY) || (PLATFORM(QT) && defined(QT_OPENGL_ES_2)) || ((PLATFORM(GTK) || PLATFORM(EFL) || PLATFORM(WIN)) && USE(OPENGL_ES_2))
     friend class Extensions3DOpenGLES;
     OwnPtr<Extensions3DOpenGLES> m_extensions;
 #else
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to