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

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: Fixed merge issue 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | ui/gl/gl_surface_egl.cc » ('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 6346e427e042e72eaf503b1b780c6be2cf2bca8c..8cce5cd953b055dfbf7c3558bb6a40fb6d6a73df 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.15",
+ "version": "2.16",
"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"
@@ -620,6 +624,22 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
"features": [
"disable_ext_discard_framebuffer"
]
+ },
+ {
+ "id": 41,
+ "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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698