| 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 29 matching lines...) Expand all Loading... |
| 40 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is | 40 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is |
| 41 // only used if "op" is "between". "number" is used for all "op" values except | 41 // only used if "op" is "between". "number" is used for all "op" values except |
| 42 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. | 42 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. |
| 43 // | 43 // |
| 44 // STRING includes "op" and "value". "op" can be any of the following values: | 44 // STRING includes "op" and "value". "op" can be any of the following values: |
| 45 // "contains", "beginwith", "endwith", "=". "value" is a string. | 45 // "contains", "beginwith", "endwith", "=". "value" is a string. |
| 46 | 46 |
| 47 { | 47 { |
| 48 "name": "software rendering list", | 48 "name": "software rendering list", |
| 49 // Please update the version number whenever you change this file. | 49 // Please update the version number whenever you change this file. |
| 50 "version": "1.11", | 50 "version": "1.12", |
| 51 "entries": [ | 51 "entries": [ |
| 52 { | 52 { |
| 53 "id": 1, | 53 "id": 1, |
| 54 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 54 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
| 55 "webkit_bugs": [47028], | 55 "webkit_bugs": [47028], |
| 56 "os": { | 56 "os": { |
| 57 "type": "macosx" | 57 "type": "macosx" |
| 58 }, | 58 }, |
| 59 "vendor_id": "0x1002", | 59 "vendor_id": "0x1002", |
| 60 "device_id": ["0x7249"], | 60 "device_id": ["0x7249"], |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "id": 17, | 224 "id": 17, |
| 225 "description": "Intel mesa drivers are crash-prone.", | 225 "description": "Intel mesa drivers are crash-prone.", |
| 226 "cr_bugs": [76703], | 226 "cr_bugs": [76703], |
| 227 "os": { | 227 "os": { |
| 228 "type": "linux" | 228 "type": "linux" |
| 229 }, | 229 }, |
| 230 "vendor_id": "0x8086", | 230 "vendor_id": "0x8086", |
| 231 "blacklist": [ | 231 "blacklist": [ |
| 232 "all" | 232 "all" |
| 233 ] | 233 ] |
| 234 }, |
| 235 { |
| 236 "id": 18, |
| 237 "description": "NVIDIA Quadro FX 1500 is buggy.", |
| 238 "cr_bugs": [84701], |
| 239 "os": { |
| 240 "type": "linux" |
| 241 }, |
| 242 "vendor_id": "0x10de", |
| 243 "device_id": ["0x029e"], |
| 244 "blacklist": [ |
| 245 "all" |
| 246 ] |
| 234 } | 247 } |
| 235 ] | 248 ] |
| 236 } | 249 } |
| OLD | NEW |