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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 2682723003: Make disabling accelerated VPX decoding a GPU driver bug workaround. (Closed)
Patch Set: remove flag Created 3 years, 10 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 42cfd2242f28c074beeb9a1fd5dc14b6eb996479..0498e1a1409b31a8a4c89bf7413bd958d91dabcc 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.30",
+ "version": "9.31",
"entries": [
{
"id": 1,
@@ -2317,6 +2317,61 @@ LONG_STRING_CONST(
"features": [
"force_update_scissor_state_when_binding_fbo0"
]
+ },
+) // String split to avoid MSVC char limit.
+LONG_STRING_CONST(
+ {
+ "id": 215,
+ "description": "VPx decoding isn't supported before Windows 10 anniversary update.",
+ "cr_bugs": [616318],
+ "os": {
+ "type": "win",
+ "version": {
+ "op": "<",
+ "value": "10.0.14393"
+ }
+ },
+ "features": [
+ "disable_accelerated_vpx_decode"
+ ]
+ },
+ {
+ "id": 216,
+ "description": "VPx decoding is too slow on Intel Broadwell, Skylake, and CherryView",
+ "cr_bugs": [616318],
+ "os": {
+ "type": "win"
+ },
+ "vendor_id": "0x8086",
+ "device_id": ["0x1602", "0x1606", "0x160a", "0x160b", "0x160d",
+ "0x160e", "0x1612", "0x1616", "0x161a", "0x161b",
+ "0x161d", "0x161e", "0x1622", "0x1626", "0x162a",
+ "0x162b", "0x162d", "0x162e", "0x22b0", "0x22b1",
+ "0x22b2", "0x22b3", "0x1902", "0x1906", "0x190a",
+ "0x190b", "0x190e", "0x1912", "0x1913", "0x1915",
+ "0x1916", "0x1917", "0x191a", "0x191b", "0x191d",
+ "0x191e", "0x1921", "0x1923", "0x1926", "0x1927",
+ "0x192a", "0x192b", "0x192d", "0x1932", "0x193a",
+ "0x193b", "0x193d"],
+ "features": [
+ "disable_accelerated_vpx_decode"
+ ]
+ },
+ {
+ "id": 217,
+ "description": "Accelerated VPx decoding is hanging on some videos.",
+ "cr_bugs": [654111],
+ "os": {
+ "type": "win"
+ },
+ "vendor_id": "0x8086",
+ "driver_version": {
+ "op": "<",
+ "value": "21.20.16.4542"
+ },
+ "features": [
+ "disable_accelerated_vpx_decode"
+ ]
}
]
// Please update the version number at beginning of this file whenever you

Powered by Google App Engine
This is Rietveld 408576698