| 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 // The format of a valid software_rendering_list.json file is defined in | 6 // The format of a valid software_rendering_list.json file is defined in |
| 7 // <gpu/config/gpu_control_list_format.txt>. | 7 // <gpu/config/gpu_control_list_format.txt>. |
| 8 // The supported "features" can be found in <gpu/config/gpu_blacklist.cc>. | 8 // The supported "features" can be found in <gpu/config/gpu_blacklist.cc>. |
| 9 | 9 |
| 10 #include "gpu/config/gpu_control_list_jsons.h" | 10 #include "gpu/config/gpu_control_list_jsons.h" |
| (...skipping 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1243 "0x162b", "0x162d", "0x162e", "0x22b0", "0x22b1", | 1243 "0x162b", "0x162d", "0x162e", "0x22b0", "0x22b1", |
| 1244 "0x22b2", "0x22b3", "0x1902", "0x1906", "0x190a", | 1244 "0x22b2", "0x22b3", "0x1902", "0x1906", "0x190a", |
| 1245 "0x190b", "0x190e", "0x1912", "0x1913", "0x1915", | 1245 "0x190b", "0x190e", "0x1912", "0x1913", "0x1915", |
| 1246 "0x1916", "0x1917", "0x191a", "0x191b", "0x191d", | 1246 "0x1916", "0x1917", "0x191a", "0x191b", "0x191d", |
| 1247 "0x191e", "0x1921", "0x1923", "0x1926", "0x1927", | 1247 "0x191e", "0x1921", "0x1923", "0x1926", "0x1927", |
| 1248 "0x192a", "0x192b", "0x192d", "0x1932", "0x193a", | 1248 "0x192a", "0x192b", "0x192d", "0x1932", "0x193a", |
| 1249 "0x193b", "0x193d"], | 1249 "0x193b", "0x193d"], |
| 1250 "features": [ | 1250 "features": [ |
| 1251 "accelerated_vpx_decode" | 1251 "accelerated_vpx_decode" |
| 1252 ] | 1252 ] |
| 1253 }, |
| 1254 { |
| 1255 "id": 123, |
| 1256 "description": "Accelerated VPx decoding is hanging on some videos.", |
| 1257 "cr_bugs": [654111], |
| 1258 "os": { |
| 1259 "type": "win" |
| 1260 }, |
| 1261 "vendor_id": "0x8086", |
| 1262 "features": [ |
| 1263 "accelerated_vpx_decode" |
| 1264 ] |
| 1253 } | 1265 } |
| 1254 ] | 1266 ] |
| 1255 } | 1267 } |
| 1256 | 1268 |
| 1257 ); // LONG_STRING_CONST macro | 1269 ); // LONG_STRING_CONST macro |
| 1258 | 1270 |
| 1259 } // namespace gpu | 1271 } // namespace gpu |
| OLD | NEW |