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

Side by Side Diff: software_rendering_list.json

Issue 10766017: Don't blacklist new Macbook airs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/gpu/software_rendering_list/
Patch Set: Created 8 years, 5 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // "contains", "beginwith", "endwith", "=". "value" is a string. 58 // "contains", "beginwith", "endwith", "=". "value" is a string.
59 // 59 //
60 // FLOAT includes "op" "value", and "value2". "op" can be any of the 60 // FLOAT includes "op" "value", and "value2". "op" can be any of the
61 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 61 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
62 // only used if "op" is "between". "value" is used for all "op" values except 62 // only used if "op" is "between". "value" is used for all "op" values except
63 // "any". "value" and "value2" are valid float numbers. 63 // "any". "value" and "value2" are valid float numbers.
64 64
65 { 65 {
66 "name": "software rendering list", 66 "name": "software rendering list",
67 // Please update the version number whenever you change this file. 67 // Please update the version number whenever you change this file.
68 "version": "1.44", 68 "version": "1.45",
69 "entries": [ 69 "entries": [
70 { 70 {
71 "id": 1, 71 "id": 1,
72 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 72 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
73 "webkit_bugs": [47028], 73 "webkit_bugs": [47028],
74 "os": { 74 "os": {
75 "type": "macosx" 75 "type": "macosx"
76 }, 76 },
77 "vendor_id": "0x1002", 77 "vendor_id": "0x1002",
78 "device_id": ["0x7249"], 78 "device_id": ["0x7249"],
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 "number": "5" 601 "number": "5"
602 } 602 }
603 }, 603 },
604 "vendor_id": "0x1002", 604 "vendor_id": "0x1002",
605 "blacklist": [ 605 "blacklist": [
606 "flash_3d", 606 "flash_3d",
607 "flash_stage3d" 607 "flash_stage3d"
608 ] 608 ]
609 }, 609 },
610 { 610 {
611 "id": 40,
612 "description": "GPU driver may cause kernel panic on 2012 Macbook Airs.",
613 "cr_bugs": [134015],
614 "os": {
615 "type": "macosx"
616 },
617 "vendor_id": "0x8086",
618 "device_id": ["0x0166"],
619 "blacklist": [
620 "all"
621 ]
622 },
623 {
624 "id": 41, 611 "id": 41,
625 "description": "Disable 3D in Flash on XP", 612 "description": "Disable 3D in Flash on XP",
626 "cr_bugs": [134885], 613 "cr_bugs": [134885],
627 "os": { 614 "os": {
628 "type": "win", 615 "type": "win",
629 "version": { 616 "version": {
630 "op": "=", 617 "op": "=",
631 "number": "5" 618 "number": "5"
632 } 619 }
633 }, 620 },
634 "blacklist": [ 621 "blacklist": [
635 "flash_3d", 622 "flash_3d",
636 "flash_stage3d" 623 "flash_stage3d"
637 ] 624 ]
638 } 625 }
639 ] 626 ]
640 } 627 }
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