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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 1129693004: Disabled extensions in bug list now automatically removes the extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 779d840f60e0c034565cdf4052a6cda66adbb56b..5aaab4b1078df2bf422d43698aa13f7a9751f312 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.01",
+ "version": "8.02",
"entries": [
{
"id": 1,
@@ -1309,6 +1309,36 @@ LONG_STRING_CONST(
"features": [
"disable_discard_framebuffer"
]
+ },
+ {
+ "id": 108,
no sievers 2015/05/15 18:31:51 This collides with the same id defined above. It *
David Yen 2015/05/15 18:39:03 Fixed. Although this didn't blow up at runtime...
no sievers 2015/05/15 19:35:20 Mind checking with zmo@ and potentially filing a b
Zhenyao Mo 2015/05/15 23:42:53 OK, I will add a unittest for this.
+ "cr_bugs": [477514],
+ "description": "EXT_disjoint_timer_query fails after 2 queries on adreno 330 in lollypop",
+ "os": {
+ "type": "android",
+ "version": {
+ "op": ">=",
no sievers 2015/05/15 18:31:51 You are sure this used to work in 5.0 and before?
David Yen 2015/05/15 18:39:03 Yes, we even have a perf bot running GPU timing me
+ "value": "5.0.0"
+ }
+ },
+ "gl_vendor": "Qualcomm.*",
+ "gl_renderer": ".*330",
no sievers 2015/05/15 18:31:51 Do you know that this works on other 3xx GPUs? In
David Yen 2015/05/15 18:39:04 I believe the missing function problem only happen
David Yen 2015/05/15 18:45:22 Hmm, the missing functions for nexus 4 are not use
no sievers 2015/05/15 19:35:20 Adreno 320. Can you reference that bug also in her
David Yen 2015/05/15 23:44:13 This one is for the Nexus 5 (330) so I don't think
+ "disabled_extensions": [
+ "GL_EXT_disjoint_timer_query"
+ ]
+ },
+ {
+ "id": 109,
+ "cr_bugs": [477514],
+ "description": "EXT_disjoint_timer_query fails after 2 queries on adreno 420",
+ "os": {
+ "type": "android"
+ },
+ "gl_vendor": "Qualcomm.*",
+ "gl_renderer": ".*420",
+ "disabled_extensions": [
+ "GL_EXT_disjoint_timer_query"
+ ]
}
]
}

Powered by Google App Engine
This is Rietveld 408576698