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

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

Issue 9024024: Block Sis Mirage 3 Graphics card. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 8 years, 12 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is 44 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is
45 // only used if "op" is "between". "number" is used for all "op" values except 45 // only used if "op" is "between". "number" is used for all "op" values except
46 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. 46 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc.
47 // 47 //
48 // STRING includes "op" and "value". "op" can be any of the following values: 48 // STRING includes "op" and "value". "op" can be any of the following values:
49 // "contains", "beginwith", "endwith", "=". "value" is a string. 49 // "contains", "beginwith", "endwith", "=". "value" is a string.
50 50
51 { 51 {
52 "name": "software rendering list", 52 "name": "software rendering list",
53 // Please update the version number whenever you change this file. 53 // Please update the version number whenever you change this file.
54 "version": "1.24", 54 "version": "1.25",
55 "entries": [ 55 "entries": [
56 { 56 {
57 "id": 1, 57 "id": 1,
58 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 58 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
59 "webkit_bugs": [47028], 59 "webkit_bugs": [47028],
60 "os": { 60 "os": {
61 "type": "macosx" 61 "type": "macosx"
62 }, 62 },
63 "vendor_id": "0x1002", 63 "vendor_id": "0x1002",
64 "device_id": ["0x7249"], 64 "device_id": ["0x7249"],
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 "type": "linux" 446 "type": "linux"
447 }, 447 },
448 "vendor_id": "0x10de", 448 "vendor_id": "0x10de",
449 "gl_vendor": { 449 "gl_vendor": {
450 "op": "beginwith", 450 "op": "beginwith",
451 "value": "nouveau" 451 "value": "nouveau"
452 }, 452 },
453 "blacklist": [ 453 "blacklist": [
454 "all" 454 "all"
455 ] 455 ]
456 },
457 {
458 "id": 31,
459 "description": "Sis Mirage 3 Graphics is not compatible.",
460 "cr_bugs": [108449],
461 "os": {
462 "type": "win"
463 },
464 "vendor_id": "0x1039",
465 "device_id": ["0x6351"],
466 "blacklist": [
467 "all"
468 ]
456 } 469 }
457 ] 470 ]
458 } 471 }
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