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

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

Issue 1286193008: Reland of "gpu: workaround force_cube_map_positive_x_allocation fixes Android crash." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix nvidia failure on mac and android Created 5 years, 4 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
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 1463 matching lines...) Expand 10 before | Expand all | Expand 10 after
1474 "id": 126, 1474 "id": 126,
1475 "description": "Program binaries contain incorrect bound attribute locatio ns on Adreno 3xx GPUs", 1475 "description": "Program binaries contain incorrect bound attribute locatio ns on Adreno 3xx GPUs",
1476 "cr_bugs": [510637], 1476 "cr_bugs": [510637],
1477 "os": { 1477 "os": {
1478 "type": "android" 1478 "type": "android"
1479 }, 1479 },
1480 "gl_renderer": "Adreno \\(TM\\) 3.*", 1480 "gl_renderer": "Adreno \\(TM\\) 3.*",
1481 "features": [ 1481 "features": [
1482 "disable_program_cache" 1482 "disable_program_cache"
1483 ] 1483 ]
1484 },
1485 {
1486 "id": 127,
1487 "description": "Android Adreno crashes on binding incomplete cube map text ure to FBO",
1488 "cr_bugs": [518889],
1489 "os": {
1490 "type": "android"
1491 },
1492 "gl_renderer": "Adreno.*",
1493 "features": [
1494 "force_cube_map_positive_x_allocation"
1495 ]
1496 },
1497 {
1498 "id": 128,
1499 "description": "Linux ATI drivers crash on binding incomplete cube map tex ture to FBO",
1500 "cr_bugs": [518889],
1501 "os": {
1502 "type": "linux"
1503 },
1504 "vendor_id": "0x1002",
1505 "features": [
1506 "force_cube_map_positive_x_allocation"
1507 ]
1508 },
1509 {
1510 "id": 129,
1511 // TODO(dshwang): Fix ANGLE crash. crbug.com/518889
1512 "description": "ANGLE crash on glReadPixels from incomplete cube map textu re",
1513 "cr_bugs": [518889],
1514 "os": {
1515 "type": "win"
1516 },
1517 "gl_renderer": "ANGLE.*",
1518 "features": [
1519 "force_cube_complete"
1520 ]
1521 },
1522 {
1523 "id": 130,
1524 "description": "NVIDIA fails glReadPixels from incomplete cube map texture ",
1525 "cr_bugs": [518889],
1526 "gl_vendor": "NVIDIA.*",
1527 "features": [
1528 "force_cube_complete"
1529 ]
1484 } 1530 }
1485 ] 1531 ]
1486 } 1532 }
1487 1533
1488 ); // LONG_STRING_CONST macro 1534 ); // LONG_STRING_CONST macro
1489 1535
1490 } // namespace gpu 1536 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698