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

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

Issue 11962029: Blacklist force_compositing_mode in Vista. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 // 68 //
69 // FLOAT includes "op" "value", and "value2". "op" can be any of the 69 // FLOAT includes "op" "value", and "value2". "op" can be any of the
70 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is 70 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is
71 // only used if "op" is "between". "value" is used for all "op" values except 71 // only used if "op" is "between". "value" is used for all "op" values except
72 // "any". "value" and "value2" are valid float numbers. 72 // "any". "value" and "value2" are valid float numbers.
73 // INT is very much like FLOAT, except that the values need to be integers. 73 // INT is very much like FLOAT, except that the values need to be integers.
74 74
75 { 75 {
76 "name": "software rendering list", 76 "name": "software rendering list",
77 // Please update the version number whenever you change this file. 77 // Please update the version number whenever you change this file.
78 "version": "4.10", 78 "version": "4.11",
79 "entries": [ 79 "entries": [
80 { 80 {
81 "id": 1, 81 "id": 1,
82 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , 82 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." ,
83 "webkit_bugs": [47028], 83 "webkit_bugs": [47028],
84 "os": { 84 "os": {
85 "type": "macosx" 85 "type": "macosx"
86 }, 86 },
87 "vendor_id": "0x1002", 87 "vendor_id": "0x1002",
88 "device_id": ["0x7249"], 88 "device_id": ["0x7249"],
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
961 "os": { 961 "os": {
962 "type": "win", 962 "type": "win",
963 "version": { 963 "version": {
964 "op": "<", 964 "op": "<",
965 "number": "6.1" 965 "number": "6.1"
966 } 966 }
967 }, 967 },
968 "blacklist": [ 968 "blacklist": [
969 "accelerated_video_decode" 969 "accelerated_video_decode"
970 ] 970 ]
971 },
972 {
973 "id": 65,
974 "description": "Force compositing mode is unstable in Win Vista.",
975 "cr_bugs": [170421],
976 "os": {
977 "type": "win",
978 "version": {
979 "op": "=",
980 "number": "6.0"
981 }
982 },
983 "blacklist": [
984 "force_compositing_mode"
985 ]
971 } 986 }
972 ] 987 ]
973 } 988 }
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