| 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 gpu_blacklist.json file are in the format of | 2 // A valid gpu_blacklist.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 20 matching lines...) Expand all Loading... |
| 31 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is | 31 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is |
| 32 // only used if "op" is "between". "number" is used for all "op" values except | 32 // only used if "op" is "between". "number" is used for all "op" values except |
| 33 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, ect. | 33 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, ect. |
| 34 // | 34 // |
| 35 // STRING includes "op" and "value". "op" can be any of the following values: | 35 // STRING includes "op" and "value". "op" can be any of the following values: |
| 36 // "contains", "beginwith", "endwith", "=". "value" is a string. | 36 // "contains", "beginwith", "endwith", "=". "value" is a string. |
| 37 | 37 |
| 38 { | 38 { |
| 39 "name": "gpu blacklist", | 39 "name": "gpu blacklist", |
| 40 // Please update the version number whenever you change this file. | 40 // Please update the version number whenever you change this file. |
| 41 "version": "0.6", | 41 "version": "0.7", |
| 42 "entries": [ | 42 "entries": [ |
| 43 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028 | 43 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028 |
| 44 "id": "1", | 44 "id": "1", |
| 45 "os": { | 45 "os": { |
| 46 "type": "macosx" | 46 "type": "macosx" |
| 47 }, | 47 }, |
| 48 "vendor_id": "0x1002", | 48 "vendor_id": "0x1002", |
| 49 "device_id": "0x7249", | 49 "device_id": "0x7249", |
| 50 "blacklist": [ | 50 "blacklist": [ |
| 51 "webgl" | 51 "webgl" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "id": "6", | 107 "id": "6", |
| 108 "os": { | 108 "os": { |
| 109 "type": "macosx" | 109 "type": "macosx" |
| 110 }, | 110 }, |
| 111 "vendor_id": "0x1002", | 111 "vendor_id": "0x1002", |
| 112 "device_id": "0x9583", | 112 "device_id": "0x9583", |
| 113 "blacklist": [ | 113 "blacklist": [ |
| 114 "webgl", | 114 "webgl", |
| 115 "accelerated_compositing" | 115 "accelerated_compositing" |
| 116 ] | 116 ] |
| 117 }, |
| 118 { // ATI Radeon HD2400 on Mac, BUG=68859 |
| 119 "id": "7", |
| 120 "os": { |
| 121 "type": "macosx" |
| 122 }, |
| 123 "vendor_id": "0x1002", |
| 124 "device_id": "0x94c8", |
| 125 "blacklist": [ |
| 126 "webgl", |
| 127 "accelerated_compositing" |
| 128 ] |
| 117 } | 129 } |
| 118 ] | 130 ] |
| 119 } | 131 } |
| OLD | NEW |