Title: [181653] trunk/Source/WebCore
Revision
181653
Author
[email protected]
Date
2015-03-17 11:02:56 -0700 (Tue, 17 Mar 2015)

Log Message

[WinCairo] Unreviewed build fix after r181640.

* platform/graphics/cairo/GraphicsContext3DCairo.cpp:
Tell Windows how to find ShaderLang.h.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (181652 => 181653)


--- trunk/Source/WebCore/ChangeLog	2015-03-17 17:50:45 UTC (rev 181652)
+++ trunk/Source/WebCore/ChangeLog	2015-03-17 18:02:56 UTC (rev 181653)
@@ -1,3 +1,10 @@
+2015-03-17  Alex Christensen  <[email protected]>
+
+        [WinCairo] Unreviewed build fix after r181640.
+
+        * platform/graphics/cairo/GraphicsContext3DCairo.cpp:
+        Tell Windows how to find ShaderLang.h.
+
 2015-03-17  Chris Dumez  <[email protected]>
 
         'pageLoaded' diagnostic logging is too verbose

Modified: trunk/Source/WebCore/platform/graphics/cairo/GraphicsContext3DCairo.cpp (181652 => 181653)


--- trunk/Source/WebCore/platform/graphics/cairo/GraphicsContext3DCairo.cpp	2015-03-17 17:50:45 UTC (rev 181652)
+++ trunk/Source/WebCore/platform/graphics/cairo/GraphicsContext3DCairo.cpp	2015-03-17 18:02:56 UTC (rev 181653)
@@ -39,9 +39,14 @@
 #include "NotImplemented.h"
 #include "PlatformContextCairo.h"
 #include "RefPtrCairo.h"
-#include <ANGLE/ShaderLang.h>
 #include <cairo.h>
 
+#if PLATFORM(WIN)
+#include <GLSLANG/ShaderLang.h>
+#else
+#include <ANGLE/ShaderLang.h>
+#endif
+
 #if USE(OPENGL_ES_2)
 #include "Extensions3DOpenGLES.h"
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to