| 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" |
| 11 | 11 |
| 12 #define LONG_STRING_CONST(...) #__VA_ARGS__ | 12 #define LONG_STRING_CONST(...) #__VA_ARGS__ |
| 13 | 13 |
| 14 namespace gpu { | 14 namespace gpu { |
| 15 | 15 |
| 16 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( | 16 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( |
| 17 | 17 |
| 18 { | 18 { |
| 19 "name": "software rendering list", | 19 "name": "software rendering list", |
| 20 // Please update the version number whenever you change this file. | 20 // Please update the version number whenever you change this file. |
| 21 "version": "12.02", | 21 "version": "12.03", |
| 22 "entries": [ | 22 "entries": [ |
| 23 { | 23 { |
| 24 "id": 1, | 24 "id": 1, |
| 25 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac", | 25 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac", |
| 26 "webkit_bugs": [47028], | 26 "webkit_bugs": [47028], |
| 27 "os": { | 27 "os": { |
| 28 "type": "macosx" | 28 "type": "macosx" |
| 29 }, | 29 }, |
| 30 "vendor_id": "0x1002", | 30 "vendor_id": "0x1002", |
| 31 "device_id": ["0x7249"], | 31 "device_id": ["0x7249"], |
| (...skipping 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1348 ] | 1348 ] |
| 1349 }, | 1349 }, |
| 1350 { | 1350 { |
| 1351 "id": 123, | 1351 "id": 123, |
| 1352 "description": "Accelerated VPx decoding is hanging on some videos.", | 1352 "description": "Accelerated VPx decoding is hanging on some videos.", |
| 1353 "cr_bugs": [654111], | 1353 "cr_bugs": [654111], |
| 1354 "os": { | 1354 "os": { |
| 1355 "type": "win" | 1355 "type": "win" |
| 1356 }, | 1356 }, |
| 1357 "vendor_id": "0x8086", | 1357 "vendor_id": "0x8086", |
| 1358 "driver_version": { |
| 1359 "op": "<", |
| 1360 "value": "21.20.16.4542" |
| 1361 }, |
| 1358 "features": [ | 1362 "features": [ |
| 1359 "accelerated_vpx_decode" | 1363 "accelerated_vpx_decode" |
| 1360 ] | 1364 ] |
| 1361 }, | 1365 }, |
| 1362 { | 1366 { |
| 1363 "id": 124, | 1367 "id": 124, |
| 1364 "description": "New AMD drivers have rendering glitches with GPU Rasteriza
tion", | 1368 "description": "New AMD drivers have rendering glitches with GPU Rasteriza
tion", |
| 1365 "cr_bugs": [653538], | 1369 "cr_bugs": [653538], |
| 1366 "os" : { | 1370 "os" : { |
| 1367 "type": "win" | 1371 "type": "win" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1427 "features": [ | 1431 "features": [ |
| 1428 "webgl2" | 1432 "webgl2" |
| 1429 ] | 1433 ] |
| 1430 } | 1434 } |
| 1431 ] | 1435 ] |
| 1432 } | 1436 } |
| 1433 | 1437 |
| 1434 ); // LONG_STRING_CONST macro | 1438 ); // LONG_STRING_CONST macro |
| 1435 | 1439 |
| 1436 } // namespace gpu | 1440 } // namespace gpu |
| OLD | NEW |