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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 2176703002: gpu: Disable multisample on more adreno renderers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: disable extension Created 4 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 fd709e8fbb68c01529a30e69a553fec7b3276d33..13ae8105942384df33e75a38c5b5e29a3663ad21 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.77",
+ "version": "8.78",
"entries": [
{
"id": 1,
@@ -1873,6 +1873,40 @@ LONG_STRING_CONST(
"features": [
"disable_transparent_visuals"
]
+ },
+ {
+ "id": 174,
+ "description": "Adreno 4xx support for EXT_multisampled_render_to_texture is buggy on Android 7.0",
+ "cr_bugs": [612474],
+ "os": {
+ "type": "android",
+ "version": {
+ "op": "between",
+ "value": "7.0.0",
+ "value2": "7.0.99"
+ // Only initial version of N.
+ }
+ },
+ "gl_renderer": "Adreno \\(TM\\) 4.*",
+ "disabled_extensions": [
+ "GL_EXT_multisampled_render_to_texture"
+ ]
+ },
+ {
+ "id": 175,
+ "description": "Adreno 5xx support for EXT_multisampled_render_to_texture is buggy on Android < 7.0",
+ "cr_bugs": [612474],
+ "os": {
+ "type": "android",
+ "version": {
+ "op": "<",
+ "value": "7.0"
Stephen White 2016/07/22 21:39:04 BTW, does this mean 5xx is ok in 7.0? Or should th
boliu 2016/07/22 21:40:08 Yep
+ }
+ },
+ "gl_renderer": "Adreno \\(TM\\) 5.*",
+ "disabled_extensions": [
+ "GL_EXT_multisampled_render_to_texture"
+ ]
}
]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698