Title: [119252] trunk/Source/WebCore
Revision
119252
Author
[email protected]
Date
2012-06-01 10:26:01 -0700 (Fri, 01 Jun 2012)

Log Message

Unreviewed build fix after r119247.

Do not include TextureMapperGL.h when not building
with GRAPHICS_SURFACE.

* platform/graphics/texmap/TextureMapperBackingStore.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (119251 => 119252)


--- trunk/Source/WebCore/ChangeLog	2012-06-01 17:16:38 UTC (rev 119251)
+++ trunk/Source/WebCore/ChangeLog	2012-06-01 17:26:01 UTC (rev 119252)
@@ -1,3 +1,12 @@
+2012-06-01  Zeno Albisser  <[email protected]>
+
+        Unreviewed build fix after r119247.
+
+        Do not include TextureMapperGL.h when not building
+        with GRAPHICS_SURFACE.
+
+        * platform/graphics/texmap/TextureMapperBackingStore.cpp:
+
 2012-06-01  Mario Sanchez Prada  <[email protected]>
 
         [GTK] Add a new and reusable Geoclue-based geolocation provider in WebCore

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperBackingStore.cpp (119251 => 119252)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperBackingStore.cpp	2012-06-01 17:16:38 UTC (rev 119251)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperBackingStore.cpp	2012-06-01 17:26:01 UTC (rev 119252)
@@ -24,7 +24,10 @@
 #include "GraphicsSurface.h"
 #include "ImageBuffer.h"
 #include "TextureMapper.h"
+
+#if USE(GRAPHICS_SURFACE)
 #include "TextureMapperGL.h"
+#endif
 
 namespace WebCore {
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to