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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 "os": { | 193 "os": { |
194 "type": "macosx" | 194 "type": "macosx" |
195 }, | 195 }, |
196 "features": [ | 196 "features": [ |
197 "disable_multimonitor_multisampling" | 197 "disable_multimonitor_multisampling" |
198 ] | 198 ] |
199 }, | 199 }, |
200 { | 200 { |
201 "id": 31, | 201 "id": 31, |
202 "cr_bugs": [154715, 10068, 269829, 294779, 285292], | 202 "cr_bugs": [154715, 10068, 269829, 294779, 285292], |
203 "description": "The Mali-Txxx driver does not guarantee flush ordering", | 203 "description": "The Mali-xxx driver does not guarantee flush ordering", |
204 "gl_vendor": "ARM.*", | 204 "gl_vendor": "ARM.*", |
205 "gl_renderer": "Mali-T.*", | 205 "gl_renderer": "Mali.*", |
206 "features": [ | 206 "features": [ |
207 "use_virtualized_gl_contexts" | 207 "use_virtualized_gl_contexts" |
208 ] | 208 ] |
209 }, | 209 }, |
210 { | 210 { |
211 "id": 32, | 211 "id": 32, |
212 "cr_bugs": [179815], | 212 "cr_bugs": [179815], |
213 "description": "Share groups are not working on (older?) Broadcom drivers"
, | 213 "description": "Share groups are not working on (older?) Broadcom drivers"
, |
214 "os": { | 214 "os": { |
215 "type": "android" | 215 "type": "android" |
(...skipping 2083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2299 ] | 2299 ] |
2300 } | 2300 } |
2301 ] | 2301 ] |
2302 // Please update the version number at beginning of this file whenever you | 2302 // Please update the version number at beginning of this file whenever you |
2303 // change this file. | 2303 // change this file. |
2304 } | 2304 } |
2305 | 2305 |
2306 ); // LONG_STRING_CONST macro | 2306 ); // LONG_STRING_CONST macro |
2307 | 2307 |
2308 } // namespace gpu | 2308 } // namespace gpu |
OLD | NEW |