Advertisement
Guest User

Untitled

a guest
Sep 12th, 2012
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. --- qtwebkit-5.0b3.orig/Source/WebCore/platform/graphics/OpenGLShims.cpp
  2. +++ qtwebkit-5.0b3/Source/WebCore/platform/graphics/OpenGLShims.cpp
  3. @@ -170,7 +170,8 @@ bool initializeOpenGLShims()
  4. #if defined(GL_ES_VERSION_2_0)
  5.  
  6. #if defined(GL_APPLE_framebuffer_multisample)
  7. - openGLFunctionTable()->glRenderbufferStorageMultisample = ::glRenderbufferStorageMultisampleAPPLE;
  8. +// openGLFunctionTable()->glRenderbufferStorageMultisample = ::glRenderbufferStorageMultisampleAPPLE;
  9. + openGLFunctionTable()->glRenderbufferStorageMultisample = 0;
  10. #elif defined(GL_ANGLE_framebuffer_multisample)
  11. openGLFunctionTable()->glRenderbufferStorageMultisample = ::glRenderbufferStorageMultisampleANGLE;
  12. #else
  13.  
  14.  
  15.  
  16. --- qtwebkit-5.0b3.orig/Source/WebCore/platform/graphics/OpenGLShims.cpp
  17. +++ qtwebkit-5.0b3/Source/WebCore/platform/graphics/OpenGLShims.cpp
  18. @@ -114,7 +114,8 @@ bool initializeOpenGLShims()
  19. #if defined(GL_ES_VERSION_2_0)
  20.  
  21. #if defined(GL_ANGLE_framebuffer_blit)
  22. - openGLFunctionTable()->glBlitFramebuffer = ::GL_ANGLE_framebuffer_blit;
  23. +// openGLFunctionTable()->glBlitFramebuffer = ::GL_ANGLE_framebuffer_blit;
  24. + openGLFunctionTable()->glBlitFramebuffer = 0;
  25. #else
  26. openGLFunctionTable()->glBlitFramebuffer = 0;
  27. #endif
  28.  
  29.  
  30.  
  31. --- qtwebkit-5.0b3.orig/Source/WTF/GNUmakefile.am
  32. +++ qtwebkit-5.0b3/Source/WTF/GNUmakefile.am
  33. @@ -26,7 +26,7 @@ libWTF_la_CXXFLAGS = \
  34.  
  35. libWTF_la_CFLAGS = \
  36. -fstrict-aliasing \
  37. - -O3 \
  38. + -O2 \
  39. $(global_cflags) \
  40. $(GLIB_CFLAGS) \
  41. $(UNICODE_CFLAGS)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement