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

Side by Side Diff: software_rendering_list.json

Issue 10332030: Enable the device ids of GPUs for Intel Ironlake in mesa drivers (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/gpu/software_rendering_list/
Patch Set: Created 8 years, 7 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 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 // "contains", "beginwith", "endwith", "=". "value" is a string. 52 // "contains", "beginwith", "endwith", "=". "value" is a string.
53 // 53 //
54 // FLOAT includes "op" "value", and "value2". "op" can be any of the 54 // FLOAT includes "op" "value", and "value2". "op" can be any of the
55 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 55 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
56 // only used if "op" is "between". "value" is used for all "op" values except 56 // only used if "op" is "between". "value" is used for all "op" values except
57 // "any". "value" and "value2" are valid float numbers. 57 // "any". "value" and "value2" are valid float numbers.
58 58
59 { 59 {
60 "name": "software rendering list", 60 "name": "software rendering list",
61 // Please update the version number whenever you change this file. 61 // Please update the version number whenever you change this file.
62 "version": "1.30", 62 "version": "1.31",
63 "entries": [ 63 "entries": [
64 { 64 {
65 "id": 1, 65 "id": 1,
66 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 66 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
67 "webkit_bugs": [47028], 67 "webkit_bugs": [47028],
68 "os": { 68 "os": {
69 "type": "macosx" 69 "type": "macosx"
70 }, 70 },
71 "vendor_id": "0x1002", 71 "vendor_id": "0x1002",
72 "device_id": ["0x7249"], 72 "device_id": ["0x7249"],
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 "op": ">=", 267 "op": ">=",
268 "number": "8.0" 268 "number": "8.0"
269 } 269 }
270 }, 270 },
271 { 271 {
272 "device_id": ["0xa001", "0xa002", "0xa011", "0xa012"], 272 "device_id": ["0xa001", "0xa002", "0xa011", "0xa012"],
273 "driver_version": { 273 "driver_version": {
274 "op": ">", 274 "op": ">",
275 "number": "8.0.2" 275 "number": "8.0.2"
276 } 276 }
277 },
278 {
279 "device_id": ["0x0042", "0x0046"],
280 "driver_version": {
281 "op": ">=",
282 "number": "8.0.2"
283 }
277 } 284 }
278 ], 285 ],
279 "blacklist": [ 286 "blacklist": [
280 "all" 287 "all"
281 ] 288 ]
282 }, 289 },
283 { 290 {
284 "id": 18, 291 "id": 18,
285 "description": "NVIDIA Quadro FX 1500 is buggy.", 292 "description": "NVIDIA Quadro FX 1500 is buggy.",
286 "cr_bugs": [84701], 293 "cr_bugs": [84701],
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 "type": "win" 534 "type": "win"
528 }, 535 },
529 "vendor_id": "0x5333", 536 "vendor_id": "0x5333",
530 "device_id": ["0x8811"], 537 "device_id": ["0x8811"],
531 "blacklist": [ 538 "blacklist": [
532 "all" 539 "all"
533 ] 540 ]
534 } 541 }
535 ] 542 ]
536 } 543 }
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