Title: [173546] trunk/Source/WebCore
Revision
173546
Author
[email protected]
Date
2014-09-11 15:46:00 -0700 (Thu, 11 Sep 2014)

Log Message

[Windows] Unreviewed build fix.
* platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:
(WebCore::GraphicsContext3D::checkVaryingsPacking):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (173545 => 173546)


--- trunk/Source/WebCore/ChangeLog	2014-09-11 22:19:09 UTC (rev 173545)
+++ trunk/Source/WebCore/ChangeLog	2014-09-11 22:46:00 UTC (rev 173546)
@@ -1,3 +1,10 @@
+2014-09-11  Roger Fong  <[email protected]>
+
+        [Windows] Unreviewed build fix.
+
+        * platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:
+        (WebCore::GraphicsContext3D::checkVaryingsPacking):
+
 2014-09-11  Beth Dakin  <[email protected]>
 
         WebKit scrollbars flash in non-dominant spaces when entering Mission Control

Modified: trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp (173545 => 173546)


--- trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp	2014-09-11 22:19:09 UTC (rev 173545)
+++ trunk/Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp	2014-09-11 22:46:00 UTC (rev 173546)
@@ -376,7 +376,7 @@
     }
 
     GC3Dint maxVaryingVectors = 0;
-#if !PLATFORM(IOS)
+#if !PLATFORM(IOS) && !(PLATFORM(WIN) && USE(OPENGL_ES_2))
     GC3Dint maxVaryingFloats = 0;
     ::glGetIntegerv(GL_MAX_VARYING_FLOATS, &maxVaryingFloats);
     maxVaryingVectors = maxVaryingFloats / 4;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to