Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(263)

Side by Side Diff: chrome/browser/resources/gpu_blacklist.json

Issue 6519020: Blacklist NVIDIA GeForce FX Go5200. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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.7", 41 "version": "0.8",
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "id": "7", 119 "id": "7",
120 "os": { 120 "os": {
121 "type": "macosx" 121 "type": "macosx"
122 }, 122 },
123 "vendor_id": "0x1002", 123 "vendor_id": "0x1002",
124 "device_id": "0x94c8", 124 "device_id": "0x94c8",
125 "blacklist": [ 125 "blacklist": [
126 "webgl", 126 "webgl",
127 "accelerated_compositing" 127 "accelerated_compositing"
128 ] 128 ]
129 },
130 { // NVIDIA GeForce FX Go5200, BUG=72938
131 "id": "8",
132 "os": {
133 "type": "any"
134 },
135 "vendor_id": "0x10de",
136 "device_id": "0x0324",
137 "blacklist": [
138 "webgl",
139 "accelerated_compositing"
140 ]
129 } 141 }
130 ] 142 ]
131 } 143 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698