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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // "contains", "beginwith", "endwith", "=". "value" is a string. | 58 // "contains", "beginwith", "endwith", "=". "value" is a string. |
59 // | 59 // |
60 // FLOAT includes "op" "value", and "value2". "op" can be any of the | 60 // FLOAT includes "op" "value", and "value2". "op" can be any of the |
61 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is | 61 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is |
62 // only used if "op" is "between". "value" is used for all "op" values except | 62 // only used if "op" is "between". "value" is used for all "op" values except |
63 // "any". "value" and "value2" are valid float numbers. | 63 // "any". "value" and "value2" are valid float numbers. |
64 | 64 |
65 { | 65 { |
66 "name": "software rendering list", | 66 "name": "software rendering list", |
67 // Please update the version number whenever you change this file. | 67 // Please update the version number whenever you change this file. |
68 "version": "1.39", | 68 "version": "1.40", |
69 "entries": [ | 69 "entries": [ |
70 { | 70 { |
71 "id": 1, | 71 "id": 1, |
72 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 72 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
73 "webkit_bugs": [47028], | 73 "webkit_bugs": [47028], |
74 "os": { | 74 "os": { |
75 "type": "macosx" | 75 "type": "macosx" |
76 }, | 76 }, |
77 "vendor_id": "0x1002", | 77 "vendor_id": "0x1002", |
78 "device_id": ["0x7249"], | 78 "device_id": ["0x7249"], |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 "version": { | 581 "version": { |
582 "op": "=", | 582 "op": "=", |
583 "number": "10.7" | 583 "number": "10.7" |
584 } | 584 } |
585 }, | 585 }, |
586 "vendor_id": "0x10de", | 586 "vendor_id": "0x10de", |
587 "device_id": ["0x0863"], | 587 "device_id": ["0x0863"], |
588 "blacklist": [ | 588 "blacklist": [ |
589 "accelerated_2d_canvas" | 589 "accelerated_2d_canvas" |
590 ] | 590 ] |
| 591 }, |
| 592 { |
| 593 "id": 39, |
| 594 "description": "ATI drivers on Windows XP cause BSODs when using 3D in Fla
sh", |
| 595 "cr_bugs": [130505], |
| 596 "os": { |
| 597 "type": "win", |
| 598 "version": { |
| 599 "op": "=", |
| 600 "number": "5" |
| 601 } |
| 602 }, |
| 603 "vendor_id": "0x1002", |
| 604 "blacklist": [ |
| 605 "flash_3d", |
| 606 "flash_stage3d" |
| 607 ] |
591 } | 608 } |
592 ] | 609 ] |
593 } | 610 } |
OLD | NEW |