| 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 // A valid gpu_driver_bug_list.json file are in the format of | 6 // A valid gpu_driver_bug_list.json file are in the format of |
| 7 // { | 7 // { |
| 8 // "version": "x.y", | 8 // "version": "x.y", |
| 9 // "entries": [ | 9 // "entries": [ |
| 10 // { // entry 1 | 10 // { // entry 1 |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 { | 429 { |
| 430 "id": 28, | 430 "id": 28, |
| 431 "cr_bugs": [277817], | 431 "cr_bugs": [277817], |
| 432 "description": "Disable use of ANGLE_instanced_arrays on Windows", | 432 "description": "Disable use of ANGLE_instanced_arrays on Windows", |
| 433 "os": { | 433 "os": { |
| 434 "type": "win" | 434 "type": "win" |
| 435 }, | 435 }, |
| 436 "features": [ | 436 "features": [ |
| 437 "disable_angle_instanced_arrays" | 437 "disable_angle_instanced_arrays" |
| 438 ] | 438 ] |
| 439 }, |
| 440 { |
| 441 "id": 38, |
| 442 "cr_bugs": [289461], |
| 443 "description": "Non-virtual contexts on Qualcomm sometimes cause out-of-or
der frames", |
| 444 "os": { |
| 445 "type": "android" |
| 446 }, |
| 447 "gl_vendor": { |
| 448 "op": "beginwith", |
| 449 "value": "Qualcomm" |
| 450 }, |
| 451 "features": [ |
| 452 "use_virtualized_gl_contexts" |
| 453 ] |
| 439 } | 454 } |
| 440 ] | 455 ] |
| 441 } | 456 } |
| 442 | 457 |
| 443 ); // LONG_STRING_CONST macro | 458 ); // LONG_STRING_CONST macro |
| 444 | 459 |
| 445 } // namespace gpu | 460 } // namespace gpu |
| OLD | NEW |