Chromium Code Reviews| 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 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 964 "type": "macosx", | 964 "type": "macosx", |
| 965 "version": { | 965 "version": { |
| 966 "op": "<=", | 966 "op": "<=", |
| 967 "value": "10.7" | 967 "value": "10.7" |
| 968 } | 968 } |
| 969 }, | 969 }, |
| 970 "vendor_id": "0x15ad", | 970 "vendor_id": "0x15ad", |
| 971 "features": [ | 971 "features": [ |
| 972 "force_compositing_mode" | 972 "force_compositing_mode" |
| 973 ] | 973 ] |
| 974 }, | |
| 975 { | |
| 976 "id": 82, | |
| 977 "description": "MediaCodec is still too buggy to use for encoding.", // b /11536167. | |
|
Ken Russell (switch to Gerrit)
2013/11/27 00:18:20
The end-of-line comment wouldn't be valid JSON if
Ami GONE FROM CHROMIUM
2013/11/27 01:13:13
Even though it's google-internal only? OK.
Ken Russell (switch to Gerrit)
2013/11/27 01:16:37
Thanks. I don't think it matters that it's an inte
| |
| 978 "os": { | |
| 979 "type": "android" | |
| 980 }, | |
| 981 "features": [ | |
| 982 "accelerated_video_encode" | |
| 983 ] | |
| 974 } | 984 } |
| 975 ] | 985 ] |
| 976 } | 986 } |
| 977 | 987 |
| 978 ); // LONG_STRING_CONST macro | 988 ); // LONG_STRING_CONST macro |
| 979 | 989 |
| 980 } // namespace gpu | 990 } // namespace gpu |
| OLD | NEW |