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

Side by Side Diff: chrome/browser/resources/gpu_blacklist.json

Issue 6352011: Improve blacklist logic: use more fields (driver_vendor, gl_renderer, ect) fo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: This should turn linux trybot green Created 9 years, 11 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "gpu blacklist", 2 "name": "gpu blacklist",
3 "version": "0.2", 3 "version": "0.3",
4 "entries": [ 4 "entries": [
5 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028 5 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028
6 "id": "1",
6 "os": { 7 "os": {
7 "type": "macosx" 8 "type": "macosx"
8 }, 9 },
9 "vendor_id": "0x1002", 10 "vendor_id": "0x1002",
10 "device_id": "0x7249", 11 "device_id": "0x7249",
11 "blacklist": [ 12 "blacklist": [
12 "webgl" 13 "webgl"
13 ] 14 ]
14 }, 15 },
15 { // Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controlle r, BUG=67345,67939 16 { // Intel cards with Mesa driver earlier than 7.9, BUG=66718,67345,67939
17 "id": "2",
16 "os": { 18 "os": {
17 "type": "linux" 19 "type": "linux"
18 }, 20 },
19 "vendor_id": "0x8086", 21 "vendor_id": "0x8086",
20 "device_id": "0x2a42", 22 "driver_vendor": {
23 "op": "=",
24 "value": "mesa"
25 },
26 "driver_version": {
27 "op": "<",
28 "number": "7.9"
29 },
21 "blacklist": [ 30 "blacklist": [
22 "webgl" 31 "webgl"
23 ] 32 ]
24 }, 33 },
25 { // Intel Corporation Core Processor Integrated Graphics Controller, BUG=66 718 34 { // In linux, don't allow GPU compositing if it's software rendering, BUG=5 9302
35 "id": "3",
26 "os": { 36 "os": {
27 "type": "linux" 37 "type": "linux"
28 }, 38 },
29 "vendor_id": "0x8086", 39 "gl_renderer": {
30 "device_id": "0x0046", 40 "op": "contains",
41 "value": "software"
42 },
31 "blacklist": [ 43 "blacklist": [
32 "webgl" 44 "accelerated_compositing"
33 ] 45 ]
34 } 46 }
35 ] 47 ]
36 } 48 }
OLDNEW
« chrome/browser/gpu_blacklist.cc ('K') | « chrome/browser/gpu_process_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698