Guest User

Untitled

a guest
Oct 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
  2. index 495fe2a..595a8f82 100644
  3. --- a/Source/WebCore/ChangeLog
  4. +++ b/Source/WebCore/ChangeLog
  5. @@ -1,3 +1,12 @@
  6. +2012-06-01 Zeno Albisser <zeno@webkit.org>
  7. +
  8. + Unreviewed build fix after r119247.
  9. +
  10. + Do not include TextureMapperGL.h when not building
  11. + with GRAPHICS_SURFACE.
  12. +
  13. + * platform/graphics/texmap/TextureMapperBackingStore.cpp:
  14. +
  15. 2012-06-01 Mario Sanchez Prada <msanchez@igalia.com>
  16.  
  17. [GTK] Add a new and reusable Geoclue-based geolocation provider in WebCore
  18. diff --git a/Source/WebCore/platform/graphics/texmap/TextureMapperBackingStore.cpp b/Source/WebCore/platform/graphics/texmap/TextureMapperBackingStore.cpp
  19. index 6f0f2b8..0ea3360 100644
  20. --- a/Source/WebCore/platform/graphics/texmap/TextureMapperBackingStore.cpp
  21. +++ b/Source/WebCore/platform/graphics/texmap/TextureMapperBackingStore.cpp
  22. @@ -24,7 +24,10 @@
  23. #include "GraphicsSurface.h"
  24. #include "ImageBuffer.h"
  25. #include "TextureMapper.h"
  26. +
  27. +#if USE(GRAPHICS_SURFACE)
  28. #include "TextureMapperGL.h"
  29. +#endif
  30.  
  31. namespace WebCore {
Add Comment
Please, Sign In to add comment