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

Unified Diff: ui/gl/gl_context_glx.cc

Issue 2479393002: Don't use OpenGL context versions between 3.0 and 3.2 on Mesa. (Closed)
Patch Set: Created 4 years, 1 month 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/config/gpu_driver_bug_list_json.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_context_glx.cc
diff --git a/ui/gl/gl_context_glx.cc b/ui/gl/gl_context_glx.cc
index 2bdda7ffcbdf52aab33d04e353b522c72e629ab8..ab81f5431f5240433ccd5aeca38e0db27cd86266 100644
--- a/ui/gl/gl_context_glx.cc
+++ b/ui/gl/gl_context_glx.cc
@@ -106,9 +106,8 @@ GLXContext CreateHighestVersionContext(Display* display,
{ GLX_CONTEXT_CORE_PROFILE_BIT_ARB, { GLVersion(4, 1) } },
{ GLX_CONTEXT_CORE_PROFILE_BIT_ARB, { GLVersion(4, 0) } },
{ GLX_CONTEXT_CORE_PROFILE_BIT_ARB, { GLVersion(3, 3) } },
- { GLX_CONTEXT_CORE_PROFILE_BIT_ARB, { GLVersion(3, 2) } },
- { 0, { GLVersion(3, 1) } },
- { 0, { GLVersion(3, 0) } },
+ // Do not try to create OpenGL context versions between 3.0 and
+ // 3.2 because of compatibility problems. crbug.com/659030
{ 0, { GLVersion(2, 0) } },
{ 0, { GLVersion(1, 5) } },
{ 0, { GLVersion(1, 4) } },
« no previous file with comments | « gpu/config/gpu_driver_bug_list_json.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698