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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 296133007: Disable multisampling on Mali-400 GPUs and Android < 4.3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and add version bump Created 6 years, 7 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 fcc11923261edff42adec6913b7f6a7b1d42a3ff..8b5e326ac9f6632b4d5c4deb75ef2bb4880f2203 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": "5.5",
+ "version": "5.6",
"entries": [
{
"id": 1,
@@ -986,6 +986,29 @@ LONG_STRING_CONST(
"features": [
"disable_egl_khr_fence_sync"
]
+ },
+ {
+ "id": 75,
+ "description": "Mali-400 support of EXT_multisampled_render_to_texture is buggy on Android < 4.3",
+ "cr_bugs": [362435],
+ "os": {
+ "type": "android",
+ "version": {
+ "op": "<",
+ "value": "4.3"
+ }
+ },
+ "gl_vendor": {
+ "op": "beginwith",
+ "value": "ARM"
+ },
+ "gl_renderer": {
+ "op": "contains",
+ "value": "Mali-400"
+ },
+ "features": [
+ "disable_multisampling"
+ ]
}
]
}
« 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