Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Determines whether certain gpu-related features are blacklisted or not. | 1 // Determines whether certain gpu-related features are blacklisted or not. |
| 2 // A valid software_rendering_list.json file are in the format of | 2 // A valid software_rendering_list.json file are in the format of |
| 3 // { | 3 // { |
| 4 // "version": "x.y", | 4 // "version": "x.y", |
| 5 // "entries": [ | 5 // "entries": [ |
| 6 // { // entry 1 | 6 // { // entry 1 |
| 7 // }, | 7 // }, |
| 8 // ... | 8 // ... |
| 9 // { // entry n | 9 // { // entry n |
| 10 // } | 10 // } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 47 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is | 47 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is |
| 48 // only used if "op" is "between". "number" is used for all "op" values except | 48 // only used if "op" is "between". "number" is used for all "op" values except |
| 49 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. | 49 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. |
| 50 // | 50 // |
| 51 // STRING includes "op" and "value". "op" can be any of the following values: | 51 // STRING includes "op" and "value". "op" can be any of the following values: |
| 52 // "contains", "beginwith", "endwith", "=". "value" is a string. | 52 // "contains", "beginwith", "endwith", "=". "value" is a string. |
| 53 | 53 |
| 54 { | 54 { |
| 55 "name": "software rendering list", | 55 "name": "software rendering list", |
| 56 // Please update the version number whenever you change this file. | 56 // Please update the version number whenever you change this file. |
| 57 "version": "1.20", | 57 "version": "1.21", |
| 58 "entries": [ | 58 "entries": [ |
| 59 { | 59 { |
| 60 "id": 1, | 60 "id": 1, |
| 61 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , | 61 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , |
| 62 "webkit_bugs": [47028], | 62 "webkit_bugs": [47028], |
| 63 "os": { | 63 "os": { |
| 64 "type": "macosx" | 64 "type": "macosx" |
| 65 }, | 65 }, |
| 66 "vendor_id": "0x1002", | 66 "vendor_id": "0x1002", |
| 67 "device_id": ["0x7249"], | 67 "device_id": ["0x7249"], |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 91 "type": "any" | 91 "type": "any" |
| 92 }, | 92 }, |
| 93 "vendor_id": "0x8086", | 93 "vendor_id": "0x8086", |
| 94 "device_id": ["0x27AE"], | 94 "device_id": ["0x27AE"], |
| 95 "blacklist": [ | 95 "blacklist": [ |
| 96 "webgl" | 96 "webgl" |
| 97 ] | 97 ] |
| 98 }, | 98 }, |
| 99 { | 99 { |
| 100 "id": 5, | 100 "id": 5, |
| 101 "description": "ATI cards in Linux are crash-prone.", | 101 "description": "ATI/AMD cards with older or third-party drivers in Linux a re crash-prone.", |
| 102 "cr_bugs": [71381, 76428, 73910], | 102 "cr_bugs": [71381, 76428, 73910, 101225], |
| 103 "os": { | 103 "os": { |
| 104 "type": "linux" | 104 "type": "linux" |
| 105 }, | 105 }, |
| 106 "vendor_id": "0x1002", | 106 "vendor_id": "0x1002", |
| 107 "exceptions": [ | |
| 108 { | |
| 109 "driver_vendor": { | |
| 110 "op": "=", | |
| 111 "value": "ATI / AMD" | |
|
Ken Russell (switch to Gerrit)
2011/10/24 20:57:13
Is it possible to express this as a "contains" ope
| |
| 112 }, | |
| 113 "driver_version": { | |
| 114 "op": ">=", | |
| 115 "number": "8.92" | |
| 116 } | |
| 117 } | |
| 118 ], | |
| 107 "blacklist": [ | 119 "blacklist": [ |
| 108 "all" | 120 "all" |
| 109 ] | 121 ] |
| 110 }, | 122 }, |
| 111 { | 123 { |
| 112 "id": 8, | 124 "id": 8, |
| 113 "description": "NVIDIA GeForce FX Go5200 is assumed to be buggy.", | 125 "description": "NVIDIA GeForce FX Go5200 is assumed to be buggy.", |
| 114 "cr_bugs": [72938], | 126 "cr_bugs": [72938], |
| 115 "os": { | 127 "os": { |
| 116 "type": "any" | 128 "type": "any" |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 383 { | 395 { |
| 384 "vendor_id": "0x10de" | 396 "vendor_id": "0x10de" |
| 385 } | 397 } |
| 386 ], | 398 ], |
| 387 "blacklist": [ | 399 "blacklist": [ |
| 388 "all" | 400 "all" |
| 389 ] | 401 ] |
| 390 } | 402 } |
| 391 ] | 403 ] |
| 392 } | 404 } |
| OLD | NEW |