| 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 2303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 2320 ) // LONG_STRING_CONST macro |
| 2321 // Avoid C2026 (string too big) error on VisualStudio. | 2321 // Avoid C2026 (string too big) error on VisualStudio. |
| 2322 LONG_STRING_CONST( | 2322 LONG_STRING_CONST( |
| 2323 { | 2323 { |
| 2324 // Corresponds to software rendering list #140. |
| 2324 "id": 214, | 2325 "id": 214, |
| 2325 "description": "Certain versions of Qualcomm driver don't setup scissor st
ate correctly when FBO0 is bound.", | 2326 "description": "Certain versions of Qualcomm driver don't setup scissor st
ate correctly when FBO0 is bound.", |
| 2326 "cr_bugs": [670607, 696627], | 2327 "cr_bugs": [670607, 696627, 698197], |
| 2327 "gl_vendor": "Qualcomm.*", | 2328 "gl_vendor": "Qualcomm.*", |
| 2328 "machine_model_name": ["Nexus 7", "KFTHWI", "KFSAWI", "KFAPWI", "KFTHWA",
"KFSAWA", "KFAPWA"], | 2329 "machine_model_name": ["Nexus 7", "KFTHWI", "KFSAWI", "KFAPWI", "KFTHWA",
"KFSAWA", "KFAPWA"], |
| 2329 "features": [ | 2330 "features": [ |
| 2330 "force_update_scissor_state_when_binding_fbo0" | 2331 "force_update_scissor_state_when_binding_fbo0", |
| 2332 // Somehow the main workaround above won't work without the one below. |
| 2333 // See https://crbug.com/698197 for details. |
| 2334 "disable_chromium_framebuffer_multisample" |
| 2331 ] | 2335 ] |
| 2332 }, | 2336 }, |
| 2333 { | 2337 { |
| 2334 "id": 215, | 2338 "id": 215, |
| 2335 "description": "Fake no-op GPU driver bug workaround for testing", | 2339 "description": "Fake no-op GPU driver bug workaround for testing", |
| 2336 "cr_bugs": [682912], | 2340 "cr_bugs": [682912], |
| 2337 "vendor_id": "0xbad9", | 2341 "vendor_id": "0xbad9", |
| 2338 "device_id": ["0xbad9"], | 2342 "device_id": ["0xbad9"], |
| 2339 "features": [ | 2343 "features": [ |
| 2340 "use_gpu_driver_workaround_for_testing" | 2344 "use_gpu_driver_workaround_for_testing" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2381 ] | 2385 ] |
| 2382 } | 2386 } |
| 2383 ] | 2387 ] |
| 2384 // Please update the version number at beginning of this file whenever you | 2388 // Please update the version number at beginning of this file whenever you |
| 2385 // change this file. | 2389 // change this file. |
| 2386 } | 2390 } |
| 2387 | 2391 |
| 2388 ); // LONG_STRING_CONST macro | 2392 ); // LONG_STRING_CONST macro |
| 2389 | 2393 |
| 2390 } // namespace gpu | 2394 } // namespace gpu |
| OLD | NEW |