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

Side by Side Diff: gpu/config/gpu_driver_bug_list.json

Issue 2682723003: Make disabling accelerated VPX decoding a GPU driver bug workaround. (Closed)
Patch Set: rebase Created 3 years, 7 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 unified diff | Download patch
« no previous file with comments | « gpu/config/gpu_blacklist_unittest.cc ('k') | gpu/config/gpu_driver_bug_workaround_type.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "gpu driver bug list", 2 "name": "gpu driver bug list",
3 "version": "10.5", 3 "version": "10.6",
4 "entries": [ 4 "entries": [
5 { 5 {
6 "id": 1, 6 "id": 1,
7 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly", 7 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly",
8 "os": { 8 "os": {
9 "type": "android" 9 "type": "android"
10 }, 10 },
11 "gl_vendor": "Imagination.*", 11 "gl_vendor": "Imagination.*",
12 "features": [ 12 "features": [
13 "use_client_side_arrays_for_stream_buffers" 13 "use_client_side_arrays_for_stream_buffers"
(...skipping 2359 matching lines...) Expand 10 before | Expand all | Expand 10 after
2373 "id": 223, 2373 "id": 223,
2374 "description": "Force integer or srgb cube map texture complete on Linux A MD", 2374 "description": "Force integer or srgb cube map texture complete on Linux A MD",
2375 "cr_bugs": [712117], 2375 "cr_bugs": [712117],
2376 "os": { 2376 "os": {
2377 "type": "linux" 2377 "type": "linux"
2378 }, 2378 },
2379 "vendor_id": "0x1002", 2379 "vendor_id": "0x1002",
2380 "features": [ 2380 "features": [
2381 "force_int_or_srgb_cube_texture_complete" 2381 "force_int_or_srgb_cube_texture_complete"
2382 ] 2382 ]
2383 },
2384 {
2385 "id": 224,
2386 "description": "VPx decoding isn't supported before Windows 10 anniversary update.",
2387 "cr_bugs": [616318],
2388 "os": {
2389 "type": "win",
2390 "version": {
2391 "op": "<",
2392 "value": "10.0.14393"
2393 }
2394 },
2395 "features": [
2396 "disable_accelerated_vpx_decode"
2397 ]
2398 },
2399 {
2400 "id": 225,
2401 "description": "VPx decoding is too slow on Intel Broadwell, Skylake, and CherryView",
2402 "cr_bugs": [616318],
2403 "os": {
2404 "type": "win"
2405 },
2406 "vendor_id": "0x8086",
2407 "device_id": ["0x1602", "0x1606", "0x160a", "0x160b", "0x160d",
2408 "0x160e", "0x1612", "0x1616", "0x161a", "0x161b",
2409 "0x161d", "0x161e", "0x1622", "0x1626", "0x162a",
2410 "0x162b", "0x162d", "0x162e", "0x22b0", "0x22b1",
2411 "0x22b2", "0x22b3", "0x1902", "0x1906", "0x190a",
2412 "0x190b", "0x190e", "0x1912", "0x1913", "0x1915",
2413 "0x1916", "0x1917", "0x191a", "0x191b", "0x191d",
2414 "0x191e", "0x1921", "0x1923", "0x1926", "0x1927",
2415 "0x192a", "0x192b", "0x192d", "0x1932", "0x193a",
2416 "0x193b", "0x193d"],
2417 "features": [
2418 "disable_accelerated_vpx_decode"
2419 ]
2420 },
2421 {
2422 "id": 226,
2423 "description": "Accelerated VPx decoding is hanging on some videos.",
2424 "cr_bugs": [654111],
2425 "os": {
2426 "type": "win"
2427 },
2428 "vendor_id": "0x8086",
2429 "driver_version": {
2430 "op": "<",
2431 "value": "21.20.16.4542"
2432 },
2433 "features": [
2434 "disable_accelerated_vpx_decode"
2435 ]
2383 } 2436 }
2384 ], 2437 ],
2385 "comment": [ 2438 "comment": [
2386 "Please update the version number on top whenever you change this file" 2439 "Please update the version number on top whenever you change this file"
2387 ] 2440 ]
2388 } 2441 }
OLDNEW
« no previous file with comments | « gpu/config/gpu_blacklist_unittest.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