| 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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 "driver_vendor": "NVIDIA", | 474 "driver_vendor": "NVIDIA", |
| 475 "driver_version": { | 475 "driver_version": { |
| 476 "op": "<", | 476 "op": "<", |
| 477 "value": "295" | 477 "value": "295" |
| 478 }, | 478 }, |
| 479 "features": [ | 479 "features": [ |
| 480 "all" | 480 "all" |
| 481 ] | 481 ] |
| 482 }, | 482 }, |
| 483 { | 483 { |
| 484 "id": 48, | |
| 485 "description": "Accelerated video decode is unavailable on Linux", | |
| 486 "cr_bugs": [137247], | |
| 487 "os": { | |
| 488 "type": "linux" | |
| 489 }, | |
| 490 "features": [ | |
| 491 "accelerated_video_decode" | |
| 492 ] | |
| 493 }, | |
| 494 { | |
| 495 "id": 49, | 484 "id": 49, |
| 496 "description": "NVidia GeForce GT 650M can cause the system to hang with f
lash 3D", | 485 "description": "NVidia GeForce GT 650M can cause the system to hang with f
lash 3D", |
| 497 "cr_bugs": [140175], | 486 "cr_bugs": [140175], |
| 498 "os": { | 487 "os": { |
| 499 "type": "macosx", | 488 "type": "macosx", |
| 500 "version": { | 489 "version": { |
| 501 "op": "between", | 490 "op": "between", |
| 502 "value": "10.8.0", | 491 "value": "10.8.0", |
| 503 "value2": "10.8.1" | 492 "value2": "10.8.1" |
| 504 } | 493 } |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1189 "gpu_rasterization", | 1178 "gpu_rasterization", |
| 1190 "accelerated_2d_canvas" | 1179 "accelerated_2d_canvas" |
| 1191 ] | 1180 ] |
| 1192 } | 1181 } |
| 1193 ] | 1182 ] |
| 1194 } | 1183 } |
| 1195 | 1184 |
| 1196 ); // LONG_STRING_CONST macro | 1185 ); // LONG_STRING_CONST macro |
| 1197 | 1186 |
| 1198 } // namespace gpu | 1187 } // namespace gpu |
| OLD | NEW |