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.14", | 50 "version": "1.15", |
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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 "type": "macosx", | 262 "type": "macosx", |
263 "version": { | 263 "version": { |
264 "op": "=", | 264 "op": "=", |
265 "number": "10.5" | 265 "number": "10.5" |
266 } | 266 } |
267 }, | 267 }, |
268 "blacklist": [ | 268 "blacklist": [ |
269 "accelerated_2d_canvas", | 269 "accelerated_2d_canvas", |
270 "accelerated_compositing" | 270 "accelerated_compositing" |
271 ] | 271 ] |
| 272 }, |
| 273 { |
| 274 "id": 20, |
| 275 "description": "NVIDIA driver 260.19.06 on linux is crash-prone.", |
| 276 "cr_bugs": [82232, 82541], |
| 277 "os": { |
| 278 "type": "linux" |
| 279 }, |
| 280 "vendor_id": "0x10de", |
| 281 "driver_vendor": { |
| 282 "op": "=", |
| 283 "value": "NVIDIA" |
| 284 }, |
| 285 "driver_version": { |
| 286 "op": "=", |
| 287 "number": "260.19.6" |
| 288 }, |
| 289 "blacklist": [ |
| 290 "all" |
| 291 ] |
| 292 }, |
| 293 { |
| 294 "id": 21, |
| 295 "description": "NVIDIA driver 195.36.24 on linux is buggy for certain Quad
ro FX series cards.", |
| 296 "cr_bugs": [87680,90091], |
| 297 "os": { |
| 298 "type": "linux" |
| 299 }, |
| 300 "vendor_id": "0x10de", |
| 301 "device_id": ["0x00cd", "0x00ce"], |
| 302 "driver_vendor": { |
| 303 "op": "=", |
| 304 "value": "NVIDIA" |
| 305 }, |
| 306 "driver_version": { |
| 307 "op": "=", |
| 308 "number": "195.36.24" |
| 309 }, |
| 310 "blacklist": [ |
| 311 "all" |
| 312 ] |
| 313 }, |
| 314 { |
| 315 "id": 22, |
| 316 "description": "NVIDIA linux drivers older than 195.36.24 are assumed to b
e buggy.", |
| 317 "os": { |
| 318 "type": "linux" |
| 319 }, |
| 320 "vendor_id": "0x10de", |
| 321 "driver_vendor": { |
| 322 "op": "=", |
| 323 "value": "NVIDIA" |
| 324 }, |
| 325 "driver_version": { |
| 326 "op": "<", |
| 327 "number": "195.36.24" |
| 328 }, |
| 329 "blacklist": [ |
| 330 "all" |
| 331 ] |
| 332 }, |
| 333 { |
| 334 "id": 23, |
| 335 "description": "Only NVIDIA proprietary linux drivers are enabled.", |
| 336 "cr_bugs": [87948], |
| 337 "os": { |
| 338 "type": "linux" |
| 339 }, |
| 340 "vendor_id": "0x10de", |
| 341 "exceptions": [ |
| 342 { |
| 343 "driver_vendor": { |
| 344 "op": "=", |
| 345 "value": "NVIDIA" |
| 346 } |
| 347 } |
| 348 ], |
| 349 "blacklist": [ |
| 350 "all" |
| 351 ] |
272 } | 352 } |
273 ] | 353 ] |
274 } | 354 } |
OLD | NEW |