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

Side by Side Diff: software_rendering_list.json

Issue 9959081: Blacklist S3 Trio (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/gpu/software_rendering_list/
Patch Set: Created 8 years, 8 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.28", 62 "version": "1.29",
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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 "description": "Multisampling is buggy in Intel IvyBridge.", 504 "description": "Multisampling is buggy in Intel IvyBridge.",
505 "cr_bugs": [116370], 505 "cr_bugs": [116370],
506 "os": { 506 "os": {
507 "type": "linux" 507 "type": "linux"
508 }, 508 },
509 "vendor_id": "0x8086", 509 "vendor_id": "0x8086",
510 "device_id": ["0x0152", "0x0156", "0x015a", "0x0162", "0x0166"], 510 "device_id": ["0x0152", "0x0156", "0x015a", "0x0162", "0x0166"],
511 "blacklist": [ 511 "blacklist": [
512 "multisampling" 512 "multisampling"
513 ] 513 ]
514 },
515 {
516 "id": 34,
517 "description": "S3 Trio (used in Virtual PC) is not compatible.",
518 "cr_bugs": [119948],
519 "os": {
520 "type": "win"
521 },
522 "vendor_id": "0x5333",
523 "device_id": ["0x8811"],
524 "blacklist": [
525 "all"
526 ]
514 } 527 }
515 ] 528 ]
516 } 529 }
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