Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Unified Diff: webkit/gpu/webgraphicscontext3d_in_process_impl.cc

Issue 11574023: Ignore GL_ANGLE_framebuffer_multisample on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/gpu/webgraphicscontext3d_in_process_impl.cc
diff --git a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
index b5d0a6564f7caae2040103fc5c8ebe705f6e3c66..1c77dece9325a5486e099e4f68551625f58bc338 100644
--- a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
+++ b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc
@@ -228,8 +228,12 @@ bool WebGraphicsContext3DInProcessImpl::Initialize(
strstr(extensions, "GL_EXT_framebuffer_object") != NULL;
have_ext_framebuffer_multisample_ =
strstr(extensions, "GL_EXT_framebuffer_multisample") != NULL;
+#if !defined(OS_ANDROID)
+ // Some Android Qualcomm drivers falsely report this ANGLE extension string.
+ // See http://crbug.com/165736
have_angle_framebuffer_multisample_ =
strstr(extensions, "GL_ANGLE_framebuffer_multisample") != NULL;
+#endif
have_ext_oes_standard_derivatives_ =
strstr(extensions, "GL_OES_standard_derivatives") != NULL;
have_ext_oes_egl_image_external_ =
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698