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

Side by Side Diff: chrome/browser/resources/software_rendering_list.json

Issue 10836081: Blacklist ATI FireMV 2400 GPUs on Windows. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 // "contains", "beginwith", "endwith", "=". "value" is a string. 61 // "contains", "beginwith", "endwith", "=". "value" is a string.
62 // 62 //
63 // FLOAT includes "op" "value", and "value2". "op" can be any of the 63 // FLOAT includes "op" "value", and "value2". "op" can be any of the
64 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 64 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
65 // only used if "op" is "between". "value" is used for all "op" values except 65 // only used if "op" is "between". "value" is used for all "op" values except
66 // "any". "value" and "value2" are valid float numbers. 66 // "any". "value" and "value2" are valid float numbers.
67 67
68 { 68 {
69 "name": "software rendering list", 69 "name": "software rendering list",
70 // Please update the version number whenever you change this file. 70 // Please update the version number whenever you change this file.
71 "version": "2.6", 71 "version": "2.7",
72 "entries": [ 72 "entries": [
73 { 73 {
74 "id": 1, 74 "id": 1,
75 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 75 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
76 "webkit_bugs": [47028], 76 "webkit_bugs": [47028],
77 "os": { 77 "os": {
78 "type": "macosx" 78 "type": "macosx"
79 }, 79 },
80 "vendor_id": "0x1002", 80 "vendor_id": "0x1002",
81 "device_id": ["0x7249"], 81 "device_id": ["0x7249"],
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 "type": "win" 685 "type": "win"
686 }, 686 },
687 "vendor_id": "0x1ab8", 687 "vendor_id": "0x1ab8",
688 "driver_version": { 688 "driver_version": {
689 "op": "<", 689 "op": "<",
690 "number": "7" 690 "number": "7"
691 }, 691 },
692 "blacklist": [ 692 "blacklist": [
693 "all" 693 "all"
694 ] 694 ]
695 },
696 {
697 "id": 46,
698 "description": "ATI FireMV 2400 cards on Windows are buggy.",
699 "cr_bugs": [124152],
700 "os": {
701 "type": "win"
702 },
703 "vendor_id": "0x1002",
704 "device_id": ["0x3151"],
705 "blacklist": [
706 "all"
707 ]
695 } 708 }
696 ] 709 ]
697 } 710 }
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