| 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 2299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2310 { | 2310 { |
| 2311 "id": 213, | 2311 "id": 213, |
| 2312 "description": "The Mali-Gxx driver does not guarantee flush ordering", | 2312 "description": "The Mali-Gxx driver does not guarantee flush ordering", |
| 2313 "cr_bugs": [678508], | 2313 "cr_bugs": [678508], |
| 2314 "gl_vendor": "ARM.*", | 2314 "gl_vendor": "ARM.*", |
| 2315 "gl_renderer": "Mali-G.*", | 2315 "gl_renderer": "Mali-G.*", |
| 2316 "features": [ | 2316 "features": [ |
| 2317 "use_virtualized_gl_contexts" | 2317 "use_virtualized_gl_contexts" |
| 2318 ] | 2318 ] |
| 2319 }, | 2319 }, |
| 2320 ) // LONG_STRING_CONST macro |
| 2321 // Avoid C2026 (string too big) error on VisualStudio. |
| 2322 LONG_STRING_CONST( |
| 2320 { | 2323 { |
| 2321 "id": 214, | 2324 "id": 214, |
| 2322 "description": "Certain versions of Qualcomm driver don't setup scissor st
ate correctly when FBO0 is bound.", | 2325 "description": "Certain versions of Qualcomm driver don't setup scissor st
ate correctly when FBO0 is bound.", |
| 2323 "cr_bugs": [670607], | 2326 "cr_bugs": [670607], |
| 2324 "gl_vendor": "Qualcomm.*", | 2327 "gl_vendor": "Qualcomm.*", |
| 2325 "machine_model_name": ["Nexus 7"], | 2328 "machine_model_name": ["Nexus 7"], |
| 2326 "features": [ | 2329 "features": [ |
| 2327 "force_update_scissor_state_when_binding_fbo0" | 2330 "force_update_scissor_state_when_binding_fbo0" |
| 2328 ] | 2331 ] |
| 2332 }, |
| 2333 { |
| 2334 "id": 215, |
| 2335 "description": "Fake no-op GPU driver bug workaround for testing", |
| 2336 "cr_bugs": [682912], |
| 2337 "vendor_id": "0xbad9", |
| 2338 "device_id": ["0xbad9"], |
| 2339 "features": [ |
| 2340 "use_gpu_driver_workaround_for_testing" |
| 2341 ] |
| 2329 } | 2342 } |
| 2330 ] | 2343 ] |
| 2331 // Please update the version number at beginning of this file whenever you | 2344 // Please update the version number at beginning of this file whenever you |
| 2332 // change this file. | 2345 // change this file. |
| 2333 } | 2346 } |
| 2334 | 2347 |
| 2335 ); // LONG_STRING_CONST macro | 2348 ); // LONG_STRING_CONST macro |
| 2336 | 2349 |
| 2337 } // namespace gpu | 2350 } // namespace gpu |
| OLD | NEW |