OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Determines whether certain gpu-related features are blacklisted or not. | 5 // Determines whether certain gpu-related features are blacklisted or not. |
6 // A valid software_rendering_list.json file are in the format of | 6 // A valid software_rendering_list.json file are in the format of |
7 // { | 7 // { |
8 // "version": "x.y", | 8 // "version": "x.y", |
9 // "entries": [ | 9 // "entries": [ |
10 // { // entry 1 | 10 // { // entry 1 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 #define LONG_STRING_CONST(...) #__VA_ARGS__ | 83 #define LONG_STRING_CONST(...) #__VA_ARGS__ |
84 | 84 |
85 namespace gpu { | 85 namespace gpu { |
86 | 86 |
87 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( | 87 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( |
88 | 88 |
89 { | 89 { |
90 "name": "software rendering list", | 90 "name": "software rendering list", |
91 // Please update the version number whenever you change this file. | 91 // Please update the version number whenever you change this file. |
92 "version": "6.6", | 92 "version": "6.7", |
93 "entries": [ | 93 "entries": [ |
94 { | 94 { |
95 "id": 1, | 95 "id": 1, |
96 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 96 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
97 "webkit_bugs": [47028], | 97 "webkit_bugs": [47028], |
98 "os": { | 98 "os": { |
99 "type": "macosx" | 99 "type": "macosx" |
100 }, | 100 }, |
101 "vendor_id": "0x1002", | 101 "vendor_id": "0x1002", |
102 "device_id": ["0x7249"], | 102 "device_id": ["0x7249"], |
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
980 "version": { | 980 "version": { |
981 "op": "=", | 981 "op": "=", |
982 "number": "6.0" | 982 "number": "6.0" |
983 } | 983 } |
984 }, | 984 }, |
985 "features": [ | 985 "features": [ |
986 "force_compositing_mode" | 986 "force_compositing_mode" |
987 ] | 987 ] |
988 }, | 988 }, |
989 { | 989 { |
990 "id": 66, | |
991 "description": "Force compositing mode is unstable in MacOSX earlier than
10.8.", | |
992 "cr_bugs": [174101], | |
993 "os": { | |
994 "type": "macosx", | |
995 "version": { | |
996 "op": "<", | |
997 "number": "10.8" | |
998 } | |
999 }, | |
1000 "features": [ | |
1001 "force_compositing_mode" | |
1002 ] | |
1003 }, | |
1004 { | |
1005 "id": 67, | 990 "id": 67, |
1006 "description": "Accelerated 2D Canvas is not supported on WinXP.", | 991 "description": "Accelerated 2D Canvas is not supported on WinXP.", |
1007 "cr_bugs": [175149], | 992 "cr_bugs": [175149], |
1008 "os": { | 993 "os": { |
1009 "type": "win", | 994 "type": "win", |
1010 "version": { | 995 "version": { |
1011 "op": "=", | 996 "op": "=", |
1012 "number": "5" | 997 "number": "5" |
1013 } | 998 } |
1014 }, | 999 }, |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1178 "multisampling" | 1163 "multisampling" |
1179 ] | 1164 ] |
1180 } | 1165 } |
1181 ] | 1166 ] |
1182 } | 1167 } |
1183 | 1168 |
1184 ); // LONG_STRING_CONST macro | 1169 ); // LONG_STRING_CONST macro |
1185 | 1170 |
1186 } // namespace gpu | 1171 } // namespace gpu |
1187 | 1172 |
OLD | NEW |