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

Side by Side Diff: gpu/software_rendering_list/software_rendering_list.json

Issue 8588041: Re-enable multisampling for ATI cards on Mac 10.7.2 or newer. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 9 years, 1 month 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 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is 47 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is
48 // only used if "op" is "between". "number" is used for all "op" values except 48 // only used if "op" is "between". "number" is used for all "op" values except
49 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. 49 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc.
50 // 50 //
51 // STRING includes "op" and "value". "op" can be any of the following values: 51 // STRING includes "op" and "value". "op" can be any of the following values:
52 // "contains", "beginwith", "endwith", "=". "value" is a string. 52 // "contains", "beginwith", "endwith", "=". "value" is a string.
53 53
54 { 54 {
55 "name": "software rendering list", 55 "name": "software rendering list",
56 // Please update the version number whenever you change this file. 56 // Please update the version number whenever you change this file.
57 "version": "1.23", 57 "version": "1.24",
58 "entries": [ 58 "entries": [
59 { 59 {
60 "id": 1, 60 "id": 1,
61 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 61 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
62 "webkit_bugs": [47028], 62 "webkit_bugs": [47028],
63 "os": { 63 "os": {
64 "type": "macosx" 64 "type": "macosx"
65 }, 65 },
66 "vendor_id": "0x1002", 66 "vendor_id": "0x1002",
67 "device_id": ["0x7249"], 67 "device_id": ["0x7249"],
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 "driver_version": { 226 "driver_version": {
227 "op": "<", 227 "op": "<",
228 "number": "6.14.10.5294" 228 "number": "6.14.10.5294"
229 }, 229 },
230 "blacklist": [ 230 "blacklist": [
231 "all" 231 "all"
232 ] 232 ]
233 }, 233 },
234 { 234 {
235 "id": 16, 235 "id": 16,
236 "description": "Multisampling is buggy in some ATI Mac cards.", 236 "description": "Multisampling is buggy in ATI cards on older MacOSX.",
237 "cr_bugs": [67752, 83153], 237 "cr_bugs": [67752, 83153],
238 "os": { 238 "os": {
239 "type": "macosx" 239 "type": "macosx",
240 "version": {
241 "op": "<",
242 "number": "10.7.2"
243 }
240 }, 244 },
241 "vendor_id": "0x1002", 245 "vendor_id": "0x1002",
242 "exceptions": [
243 {
244 "device_id": ["0x6760", "0x9488"]
245 }
246 ],
247 "blacklist": [ 246 "blacklist": [
248 "multisampling" 247 "multisampling"
249 ] 248 ]
250 }, 249 },
251 { 250 {
252 "id": 17, 251 "id": 17,
253 "description": "Intel mesa drivers are crash-prone.", 252 "description": "Intel mesa drivers are crash-prone.",
254 "cr_bugs": [76703], 253 "cr_bugs": [76703],
255 "os": { 254 "os": {
256 "type": "linux" 255 "type": "linux"
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 "gl_vendor": { 452 "gl_vendor": {
454 "op": "beginwith", 453 "op": "beginwith",
455 "value": "nouveau" 454 "value": "nouveau"
456 }, 455 },
457 "blacklist": [ 456 "blacklist": [
458 "all" 457 "all"
459 ] 458 ]
460 } 459 }
461 ] 460 ]
462 } 461 }
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