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

Unified 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: Add ANGLE to workaround 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 side-by-side diff with in-line comments
Download patch
Index: gpu/config/gpu_driver_bug_list_json.cc
diff --git a/gpu/config/gpu_driver_bug_list_json.cc b/gpu/config/gpu_driver_bug_list_json.cc
index ca8fcc1527ff996164dfc81940c7ff3493f79e47..2aa77ccfe292c04cb0ba96ec37d5b8d9fcca9d30 100644
--- a/gpu/config/gpu_driver_bug_list_json.cc
+++ b/gpu/config/gpu_driver_bug_list_json.cc
@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{
"name": "gpu driver bug list",
// Please update the version number whenever you change this file.
- "version": "8.22",
+ "version": "8.23",
"entries": [
{
"id": 1,
@@ -1481,6 +1481,43 @@ LONG_STRING_CONST(
"features": [
"disable_program_cache"
]
+ },
+ {
+ "id": 127,
+ "description": "Android Adreno crashes on binding incomplete cube map texture to FBO",
+ "cr_bugs": [518889],
+ "os": {
+ "type": "android"
+ },
+ "gl_renderer": "Adreno.*",
+ "features": [
+ "force_cube_map_positive_x_allocation"
+ ]
+ },
+ {
+ "id": 128,
+ "description": "Linux ATI drivers crash on binding incomplete cube map texture to FBO",
+ "cr_bugs": [518889],
+ "os": {
+ "type": "linux"
+ },
+ "vendor_id": "0x1002",
+ "features": [
+ "force_cube_map_positive_x_allocation"
+ ]
+ },
+ {
+ "id": 129,
+ // TODO(dshwang): Fix ANGLE crash. crbug.com/518889
+ "description": "ANGLE crash on binding incomplete cube map texture to FBO",
dshwang 2015/08/19 08:10:39 Add ANGLE to workaround. It will be removed soon b
+ "cr_bugs": [518889],
+ "os": {
+ "type": "win"
+ },
+ "gl_renderer": "ANGLE.*",
+ "features": [
+ "force_cube_map_positive_x_allocation"
+ ]
}
]
}

Powered by Google App Engine
This is Rietveld 408576698