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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 1068573004: Disable framebuffer discarding on Mali-4xx and clean up. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't make old workaround more specific for safety Created 5 years, 8 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 eaadfabcda1556fc3a9f43d49cf9ed0e434d4675..a8ca7b380795e90706b12cda5a1f866970cf0667 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": "7.19",
+ "version": "7.20",
"entries": [
{
"id": 1,
@@ -502,7 +502,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
},
"gl_vendor": "ARM.*",
"features": [
- "disable_ext_discard_framebuffer"
+ "disable_discard_framebuffer"
]
},
{
@@ -515,7 +515,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
"gl_vendor": "Imagination.*",
"gl_renderer": "PowerVR SGX 540",
"features": [
- "disable_ext_discard_framebuffer"
+ "disable_discard_framebuffer"
]
},
{
@@ -527,7 +527,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
},
"gl_extensions": ".*GL_VIV_shader_binary.*",
"features": [
- "disable_ext_discard_framebuffer"
+ "disable_discard_framebuffer"
]
},
{
@@ -538,7 +538,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
"type": "chromeos"
},
"features": [
- "disable_ext_discard_framebuffer"
+ "disable_discard_framebuffer"
]
},
{
@@ -1187,9 +1187,21 @@ LONG_STRING_CONST(
"gl_vendor": "Qualcomm.*",
"gl_renderer": ".*420",
"features": [
- "disable_fbo_invalidations"
+ "disable_discard_framebuffer"
]
- }
+ },
+ {
+ "id": 104,
+ "cr_bugs": [449488,451230],
+ "description": "Framebuffer discarding causes corruption on Mali-4xx",
+ "gl_renderer": "Mali-4.*",
+ "os": {
+ "type": "android"
+ },
+ "features": [
+ "disable_discard_framebuffer"
+ ]
+ },
David Yen 2015/04/07 16:25:59 I believe you cannot have trailing comma's in the
aelias_OOO_until_Jul13 2015/04/07 19:47:11 Done.
]
}

Powered by Google App Engine
This is Rietveld 408576698