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 a certain driver bug exists in the current system. | 5 // Determines whether a certain driver bug exists in the current system. |
6 // The format of a valid gpu_driver_bug_list.json file is defined in | 6 // The format of a valid gpu_driver_bug_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 | 8 // The supported "features" can be found in |
9 // <gpu/config/gpu_driver_bug_workaround_type.h>. | 9 // <gpu/config/gpu_driver_bug_workaround_type.h>. |
10 | 10 |
(...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1210 "id": 105, | 1210 "id": 105, |
1211 "cr_bugs": [449488,451230], | 1211 "cr_bugs": [449488,451230], |
1212 "description": "Framebuffer discarding causes corruption on Mali-4xx", | 1212 "description": "Framebuffer discarding causes corruption on Mali-4xx", |
1213 "gl_renderer": "Mali-4.*", | 1213 "gl_renderer": "Mali-4.*", |
1214 "os": { | 1214 "os": { |
1215 "type": "android" | 1215 "type": "android" |
1216 }, | 1216 }, |
1217 "features": [ | 1217 "features": [ |
1218 "disable_discard_framebuffer" | 1218 "disable_discard_framebuffer" |
1219 ] | 1219 ] |
| 1220 }, |
| 1221 { |
| 1222 "id": 106, |
| 1223 "description": "MakeCurrent is slow on Linux", |
| 1224 "os": { |
| 1225 "type": "linux" |
| 1226 }, |
| 1227 "features": [ |
| 1228 "use_virtualized_gl_contexts" |
| 1229 ] |
1220 } | 1230 } |
1221 ] | 1231 ] |
1222 } | 1232 } |
1223 | 1233 |
1224 ); // LONG_STRING_CONST macro | 1234 ); // LONG_STRING_CONST macro |
1225 | 1235 |
1226 } // namespace gpu | 1236 } // namespace gpu |
OLD | NEW |