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

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

Issue 6551023: Merge r75130:... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/648/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 | « chrome/browser/gpu_process_host.cc ('k') | 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.8", 41 "version": "0.9",
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 "id": "8", 131 "id": "8",
132 "os": { 132 "os": {
133 "type": "any" 133 "type": "any"
134 }, 134 },
135 "vendor_id": "0x10de", 135 "vendor_id": "0x10de",
136 "device_id": "0x0324", 136 "device_id": "0x0324",
137 "blacklist": [ 137 "blacklist": [
138 "webgl", 138 "webgl",
139 "accelerated_compositing" 139 "accelerated_compositing"
140 ] 140 ]
141 },
142 { // Windows XP, BUG=72975
143 "id": "9",
144 "os": {
145 "type": "win",
146 "version": {
147 "op": "=",
148 "number": "5"
149 }
150 },
151 "blacklist": [
152 "webgl",
153 "accelerated_compositing"
154 ]
141 } 155 }
142 ] 156 ]
143 } 157 }
OLDNEW
« no previous file with comments | « chrome/browser/gpu_process_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698