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 2009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2020 "description": "Disable partial swaps on Mesa drivers (detected with GL_VE
RSION)", | 2020 "description": "Disable partial swaps on Mesa drivers (detected with GL_VE
RSION)", |
2021 "cr_bugs": [339493], | 2021 "cr_bugs": [339493], |
2022 "os": { | 2022 "os": { |
2023 "type": "linux" | 2023 "type": "linux" |
2024 }, | 2024 }, |
2025 "gl_type": "gl", | 2025 "gl_type": "gl", |
2026 "gl_version_string": ".*Mesa.*", | 2026 "gl_version_string": ".*Mesa.*", |
2027 "features": [ | 2027 "features": [ |
2028 "disable_post_sub_buffers_for_onscreen_surfaces" | 2028 "disable_post_sub_buffers_for_onscreen_surfaces" |
2029 ] | 2029 ] |
| 2030 }, |
| 2031 { |
| 2032 "id": 191, |
| 2033 "description": "The llvmpipe software driver from Mesa uses threads", |
| 2034 "cr_bugs": [264818], |
| 2035 "os": { |
| 2036 "type": "linux" |
| 2037 }, |
| 2038 "gl_renderer": ".*Gallium.*llvmpipe.*", |
| 2039 "features": [ |
| 2040 "sandbox_start_early" |
| 2041 ] |
2030 } | 2042 } |
2031 ] | 2043 ] |
2032 // Please update the version number at beginning of this file whenever you | 2044 // Please update the version number at beginning of this file whenever you |
2033 // change this file. | 2045 // change this file. |
2034 } | 2046 } |
2035 | 2047 |
2036 ); // LONG_STRING_CONST macro | 2048 ); // LONG_STRING_CONST macro |
2037 | 2049 |
2038 } // namespace gpu | 2050 } // namespace gpu |
OLD | NEW |