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

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

Issue 6489010: Merge 74306 - Blacklist ATI RadeonHD2600 on Mac.... (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 | « 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.5", 41 "version": "0.6",
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 }, 95 },
96 { // All ATI cards in linux, BUG=71381 96 { // All ATI cards in linux, BUG=71381
97 "id": "5", 97 "id": "5",
98 "os": { 98 "os": {
99 "type": "linux" 99 "type": "linux"
100 }, 100 },
101 "vendor_id": "0x1002", 101 "vendor_id": "0x1002",
102 "blacklist": [ 102 "blacklist": [
103 "webgl" 103 "webgl"
104 ] 104 ]
105 },
106 { // ATI Radeon HD2600 on Mac, BUG=68859
107 "id": "6",
108 "os": {
109 "type": "macosx"
110 },
111 "vendor_id": "0x1002",
112 "device_id": "0x9583",
113 "blacklist": [
114 "webgl",
115 "accelerated_compositing"
116 ]
105 } 117 }
106 ] 118 ]
107 } 119 }
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