| 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 1504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1515 "type": "win" | 1515 "type": "win" |
| 1516 }, | 1516 }, |
| 1517 "gl_renderer": "ANGLE.*", | 1517 "gl_renderer": "ANGLE.*", |
| 1518 "features": [ | 1518 "features": [ |
| 1519 "force_cube_complete" | 1519 "force_cube_complete" |
| 1520 ] | 1520 ] |
| 1521 }, | 1521 }, |
| 1522 { | 1522 { |
| 1523 "id": 130, | 1523 "id": 130, |
| 1524 "description": "NVIDIA fails glReadPixels from incomplete cube map texture
", | 1524 "description": "NVIDIA fails glReadPixels from incomplete cube map texture
", |
| 1525 "cr_bugs": [518889], | 1525 "cr_bugs": [528145], |
| 1526 "gl_vendor": "NVIDIA.*", | 1526 "gl_vendor": "NVIDIA.*", |
| 1527 "features": [ | 1527 "features": [ |
| 1528 "force_cube_complete" | 1528 "force_cube_complete" |
| 1529 ] | 1529 ] |
| 1530 }, | 1530 }, |
| 1531 { | 1531 { |
| 1532 "id": 131, | 1532 "id": 131, |
| 1533 "description": "Linux Mesa drivers crash on glTexSubImage2D() to texture s
torage bound to FBO", | 1533 "description": "Linux Mesa drivers crash on glTexSubImage2D() to texture s
torage bound to FBO", |
| 1534 "cr_bugs": [521904], | 1534 "cr_bugs": [521904], |
| 1535 "os": { | 1535 "os": { |
| 1536 "type": "linux" | 1536 "type": "linux" |
| 1537 }, | 1537 }, |
| 1538 "driver_vendor": "Mesa", | 1538 "driver_vendor": "Mesa", |
| 1539 "driver_version": { | 1539 "driver_version": { |
| 1540 "op": "<", | 1540 "op": "<", |
| 1541 "value": "10.6" | 1541 "value": "10.6" |
| 1542 }, | 1542 }, |
| 1543 "features": [ | 1543 "features": [ |
| 1544 "disable_texture_storage" | 1544 "disable_texture_storage" |
| 1545 ] | 1545 ] |
| 1546 } | 1546 } |
| 1547 ] | 1547 ] |
| 1548 } | 1548 } |
| 1549 | 1549 |
| 1550 ); // LONG_STRING_CONST macro | 1550 ); // LONG_STRING_CONST macro |
| 1551 | 1551 |
| 1552 } // namespace gpu | 1552 } // namespace gpu |
| OLD | NEW |