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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 24120004: Add an enable D3D11 flag and blacklist specific intel drivers and windows vista from using D3D11. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 months 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
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 79dc6c1e55c68be2a3efb93d2432d818df069f00..a42f0f5f029b298c63393d4e2f5448f1cb6d42ed 100644
--- a/gpu/config/gpu_driver_bug_list_json.cc
+++ b/gpu/config/gpu_driver_bug_list_json.cc
@@ -85,7 +85,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{
"name": "gpu driver bug list",
// Please update the version number whenever you change this file.
- "version": "2.13",
+ "version": "2.14",
"entries": [
{
"id": 1,
@@ -408,9 +408,13 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
},
{
"id": 26,
- "description": "Disable use of Direct3D 11 on Windows",
+ "description": "Disable use of Direct3D 11 on Windows Vista and lower.",
"os": {
- "type": "win"
+ "type": "win",
+ "version": {
+ "op": "<=",
+ "number": "6.0"
+ }
},
"features": [
"disable_d3d11"
@@ -594,6 +598,22 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
"features": [
"use_virtualized_gl_contexts"
]
+ },
+ {
+ "id": 39,
+ "cr_bugs": [259978],
+ "description": "Intel D3D driver crashes when sharing surfaces between D3D9 and D3D11.",
+ "os": {
+ "type": "win"
+ },
+ "vendor_id": "0x8086",
+ "driver_version": {
+ "op": ">=",
+ "number": "9.18.10.0"
+ },
+ "features": [
+ "disable_d3d11"
+ ]
}
]
}
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | ui/gl/gl_surface_egl.cc » ('j') | ui/gl/gl_surface_egl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698