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

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

Issue 7236023: Manage gpu feature capabilities through blacklist indepedently. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 | content/browser/gpu/gpu_data_manager.cc » ('j') | 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 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 29 matching lines...) Expand all
40 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is 40 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is
41 // only used if "op" is "between". "number" is used for all "op" values except 41 // only used if "op" is "between". "number" is used for all "op" values except
42 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. 42 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc.
43 // 43 //
44 // STRING includes "op" and "value". "op" can be any of the following values: 44 // STRING includes "op" and "value". "op" can be any of the following values:
45 // "contains", "beginwith", "endwith", "=". "value" is a string. 45 // "contains", "beginwith", "endwith", "=". "value" is a string.
46 46
47 { 47 {
48 "name": "software rendering list", 48 "name": "software rendering list",
49 // Please update the version number whenever you change this file. 49 // Please update the version number whenever you change this file.
50 "version": "1.12", 50 "version": "1.13",
51 "entries": [ 51 "entries": [
52 { 52 {
53 "id": 1, 53 "id": 1,
54 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 54 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
55 "webkit_bugs": [47028], 55 "webkit_bugs": [47028],
56 "os": { 56 "os": {
57 "type": "macosx" 57 "type": "macosx"
58 }, 58 },
59 "vendor_id": "0x1002", 59 "vendor_id": "0x1002",
60 "device_id": ["0x7249"], 60 "device_id": ["0x7249"],
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 "os": { 96 "os": {
97 "type": "linux" 97 "type": "linux"
98 }, 98 },
99 "vendor_id": "0x1002", 99 "vendor_id": "0x1002",
100 "blacklist": [ 100 "blacklist": [
101 "all" 101 "all"
102 ] 102 ]
103 }, 103 },
104 { 104 {
105 "id": 8, 105 "id": 8,
106 "description": "NVIDIA GeForce FX Go5200 does not support WebGL or acceler ated compositing.", 106 "description": "NVIDIA GeForce FX Go5200 is assumed to be buggy.",
107 "cr_bugs": [72938], 107 "cr_bugs": [72938],
108 "os": { 108 "os": {
109 "type": "any" 109 "type": "any"
110 }, 110 },
111 "vendor_id": "0x10de", 111 "vendor_id": "0x10de",
112 "device_id": ["0x0324"], 112 "device_id": ["0x0324"],
113 "blacklist": [ 113 "blacklist": [
114 "webgl", 114 "all"
115 "accelerated_compositing"
116 ] 115 ]
117 }, 116 },
118 { 117 {
119 "id": 10, 118 "id": 10,
120 "description": "NVIDIA GeForce 7300 GT on Mac does not support WebGL.", 119 "description": "NVIDIA GeForce 7300 GT on Mac does not support WebGL.",
121 "cr_bugs": [73794], 120 "cr_bugs": [73794],
122 "os": { 121 "os": {
123 "type": "macosx" 122 "type": "macosx"
124 }, 123 },
125 "vendor_id": "0x10de", 124 "vendor_id": "0x10de",
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 "description": "NVIDIA Quadro FX 1500 is buggy.", 236 "description": "NVIDIA Quadro FX 1500 is buggy.",
238 "cr_bugs": [84701], 237 "cr_bugs": [84701],
239 "os": { 238 "os": {
240 "type": "linux" 239 "type": "linux"
241 }, 240 },
242 "vendor_id": "0x10de", 241 "vendor_id": "0x10de",
243 "device_id": ["0x029e"], 242 "device_id": ["0x029e"],
244 "blacklist": [ 243 "blacklist": [
245 "all" 244 "all"
246 ] 245 ]
246 },
247 {
248 "id": 19,
249 "description": "Accelerated 2d canvas and accelerated compositing are not supported in Mac OSX version 10.5.",
250 "cr_bugs": [87157],
251 "os": {
252 "type": "macosx",
253 "version": {
254 "op": "=",
255 "number": "10.5"
256 }
257 },
258 "blacklist": [
259 "accelerated_2d_canvas",
260 "accelerated_compositing"
261 ]
247 } 262 }
248 ] 263 ]
249 } 264 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/gpu/gpu_data_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698