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

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

Issue 10459027: Unblock Sis Mirage 3 Graphics (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 8 years, 6 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.32", 62 "version": "1.33",
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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 "vendor_id": "0x10de", 479 "vendor_id": "0x10de",
480 "gl_vendor": { 480 "gl_vendor": {
481 "op": "beginwith", 481 "op": "beginwith",
482 "value": "nouveau" 482 "value": "nouveau"
483 }, 483 },
484 "blacklist": [ 484 "blacklist": [
485 "all" 485 "all"
486 ] 486 ]
487 }, 487 },
488 { 488 {
489 "id": 31,
490 "description": "Sis Mirage 3 Graphics is not compatible.",
491 "cr_bugs": [108449],
492 "os": {
493 "type": "win"
494 },
495 "vendor_id": "0x1039",
496 "device_id": ["0x6351"],
497 "blacklist": [
498 "all"
499 ]
500 },
501 {
502 "id": 32, 489 "id": 32,
503 "description": "Accelerated 2d canvas is disabled on Windows systems with low perf stats.", 490 "description": "Accelerated 2d canvas is disabled on Windows systems with low perf stats.",
504 "cr_bugs": [116350], 491 "cr_bugs": [116350],
505 "os": { 492 "os": {
506 "type": "win" 493 "type": "win"
507 }, 494 },
508 "perf_overall": { 495 "perf_overall": {
509 "op": "<", 496 "op": "<",
510 "value": "3.5" 497 "value": "3.5"
511 }, 498 },
(...skipping 22 matching lines...) Expand all
534 "type": "win" 521 "type": "win"
535 }, 522 },
536 "vendor_id": "0x5333", 523 "vendor_id": "0x5333",
537 "device_id": ["0x8811"], 524 "device_id": ["0x8811"],
538 "blacklist": [ 525 "blacklist": [
539 "all" 526 "all"
540 ] 527 ]
541 } 528 }
542 ] 529 ]
543 } 530 }
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