| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 #define LONG_STRING_CONST(...) #__VA_ARGS__ | 79 #define LONG_STRING_CONST(...) #__VA_ARGS__ |
| 80 | 80 |
| 81 namespace gpu { | 81 namespace gpu { |
| 82 | 82 |
| 83 const char kGpuDriverBugListJson[] = LONG_STRING_CONST( | 83 const char kGpuDriverBugListJson[] = LONG_STRING_CONST( |
| 84 | 84 |
| 85 { | 85 { |
| 86 "name": "gpu driver bug list", | 86 "name": "gpu driver bug list", |
| 87 // Please update the version number whenever you change this file. | 87 // Please update the version number whenever you change this file. |
| 88 "version": "2.13", | 88 "version": "2.14", |
| 89 "entries": [ | 89 "entries": [ |
| 90 { | 90 { |
| 91 "id": 1, | 91 "id": 1, |
| 92 "description": "Imagination driver doesn't like uploading lots of buffer d
ata constantly", | 92 "description": "Imagination driver doesn't like uploading lots of buffer d
ata constantly", |
| 93 "os": { | 93 "os": { |
| 94 "type": "android" | 94 "type": "android" |
| 95 }, | 95 }, |
| 96 "gl_vendor": { | 96 "gl_vendor": { |
| 97 "op": "beginwith", | 97 "op": "beginwith", |
| 98 "value": "Imagination" | 98 "value": "Imagination" |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 "number": "10.8" | 401 "number": "10.8" |
| 402 } | 402 } |
| 403 }, | 403 }, |
| 404 "vendor_id": "0x8086", | 404 "vendor_id": "0x8086", |
| 405 "features": [ | 405 "features": [ |
| 406 "disable_async_readpixels" | 406 "disable_async_readpixels" |
| 407 ] | 407 ] |
| 408 }, | 408 }, |
| 409 { | 409 { |
| 410 "id": 26, | 410 "id": 26, |
| 411 "description": "Disable use of Direct3D 11 on Windows", | 411 "description": "Disable use of Direct3D 11 on Windows Vista and lower.", |
| 412 "os": { | 412 "os": { |
| 413 "type": "win" | 413 "type": "win", |
| 414 "version": { |
| 415 "op": "<=", |
| 416 "number": "6.0" |
| 417 } |
| 414 }, | 418 }, |
| 415 "features": [ | 419 "features": [ |
| 416 "disable_d3d11" | 420 "disable_d3d11" |
| 417 ] | 421 ] |
| 418 }, | 422 }, |
| 419 { | 423 { |
| 420 "id": 27, | 424 "id": 27, |
| 421 "cr_bugs": [265115], | 425 "cr_bugs": [265115], |
| 422 "description": "Async Readpixels with GL_BGRA format is broken on Haswell
chipset on Mac.", | 426 "description": "Async Readpixels with GL_BGRA format is broken on Haswell
chipset on Mac.", |
| 423 "os": { | 427 "os": { |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 "os": { | 591 "os": { |
| 588 "type": "android" | 592 "type": "android" |
| 589 }, | 593 }, |
| 590 "gl_vendor": { | 594 "gl_vendor": { |
| 591 "op": "beginwith", | 595 "op": "beginwith", |
| 592 "value": "Qualcomm" | 596 "value": "Qualcomm" |
| 593 }, | 597 }, |
| 594 "features": [ | 598 "features": [ |
| 595 "use_virtualized_gl_contexts" | 599 "use_virtualized_gl_contexts" |
| 596 ] | 600 ] |
| 601 }, |
| 602 { |
| 603 "id": 39, |
| 604 "cr_bugs": [259978], |
| 605 "description": "Intel D3D driver crashes when sharing surfaces between D3D
9 and D3D11.", |
| 606 "os": { |
| 607 "type": "win" |
| 608 }, |
| 609 "vendor_id": "0x8086", |
| 610 "driver_version": { |
| 611 "op": ">=", |
| 612 "number": "9.18.10.0" |
| 613 }, |
| 614 "features": [ |
| 615 "disable_d3d11" |
| 616 ] |
| 597 } | 617 } |
| 598 ] | 618 ] |
| 599 } | 619 } |
| 600 | 620 |
| 601 ); // LONG_STRING_CONST macro | 621 ); // LONG_STRING_CONST macro |
| 602 | 622 |
| 603 } // namespace gpu | 623 } // namespace gpu |
| OLD | NEW |