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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 2481973002: gl_context_glx: add workaround to create default context (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 | « content/browser/gpu/gpu_process_host.cc ('k') | gpu/config/gpu_driver_bug_workaround_type.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/gpu_driver_bug_list_json.cc
diff --git a/gpu/config/gpu_driver_bug_list_json.cc b/gpu/config/gpu_driver_bug_list_json.cc
index 3385939adbf34dd07a9988cfd613b4af072e7064..dadab80d052e346ea801d95a0306c267f1eaf044 100644
--- a/gpu/config/gpu_driver_bug_list_json.cc
+++ b/gpu/config/gpu_driver_bug_list_json.cc
@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{
"name": "gpu driver bug list",
// Please update the version number whenever you change this file.
- "version": "9.00",
+ "version": "9.01",
"entries": [
{
"id": 1,
@@ -1997,6 +1997,42 @@ LONG_STRING_CONST(
"features": [
"disable_post_sub_buffers_for_onscreen_surfaces"
]
+ },
+ {
+ "id": 191,
+ "cr_bugs": [659030],
+ "description": "Don't create highest GL context possible on old Mesa / HW combos (intel part)",
+ "os": {
+ "type": "linux"
+ },
+ "driver_vendor": "Mesa",
+ "driver_version": {
+ "op": "<",
+ "value": "11"
+ },
+ "vendor_id": "0x8086",
+ "device_id": ["0x0102", "0x0116", "0x0126", "0x0166"],
+ "features": [
+ "create_default_gl_context"
+ ]
+ },
+ {
+ "id": 192,
+ "cr_bugs": [659030],
+ "description": "Don't create highest GL context possible on old Mesa / HW combos (AMD part)",
+ "os": {
+ "type": "linux"
+ },
+ "driver_vendor": "Mesa",
+ "driver_version": {
+ "op": "<",
+ "value": "11"
+ },
+ "vendor_id": "0x1002",
+ "device_id": ["0x9832"],
+ "features": [
+ "create_default_gl_context"
+ ]
}
]
}
« no previous file with comments | « content/browser/gpu/gpu_process_host.cc ('k') | gpu/config/gpu_driver_bug_workaround_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698