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.16", | 50 "version": "1.17", |
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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 "op": "=", | 340 "op": "=", |
341 "value": "Mesa" | 341 "value": "Mesa" |
342 }, | 342 }, |
343 "driver_version": { | 343 "driver_version": { |
344 "op": "<", | 344 "op": "<", |
345 "number": "7.11" | 345 "number": "7.11" |
346 }, | 346 }, |
347 "blacklist": [ | 347 "blacklist": [ |
348 "all" | 348 "all" |
349 ] | 349 ] |
| 350 }, |
| 351 { |
| 352 "id": 24, |
| 353 "description": "Accelerated 2d canvas is unstable in Linux at the moment."
, |
| 354 "os": { |
| 355 "type": "linux" |
| 356 }, |
| 357 "blacklist": [ |
| 358 "accelerated_2d_canvas" |
| 359 ] |
350 } | 360 } |
351 ] | 361 ] |
352 } | 362 } |
OLD | NEW |