Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 1275773003: gpu: support GL_TEXTURE_CUBE_MAP destination target to Copy(Sub)TextureCHROMIUM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add comments about crbug.com/528145 Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « gpu/command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698