Commit 848e2f1a authored by sievers@chromium.org's avatar sievers@chromium.org

Android: Extend Mali egl fence sync blacklist to all ES2 drivers

BUG=398964
NOTRY=True

Review URL: https://codereview.chromium.org/490613003

Cr-Commit-Position: refs/heads/master@{#290680}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290680 0039d316-1c4b-4281-b951-d872f2087c98
parent 1b7e26c7
...@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( ...@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{ {
"name": "gpu driver bug list", "name": "gpu driver bug list",
// Please update the version number whenever you change this file. // Please update the version number whenever you change this file.
"version": "7.1", "version": "7.2",
"entries": [ "entries": [
{ {
"id": 1, "id": 1,
...@@ -905,8 +905,8 @@ LONG_STRING_CONST( ...@@ -905,8 +905,8 @@ LONG_STRING_CONST(
}, },
{ {
"id": 77, "id": 77,
"cr_bugs": [378691, 373360, 371530], "cr_bugs": [378691, 373360, 371530, 398964],
"description": "Testing fences was broken on Mali-400 MP drivers", "description": "Testing fences was broken on Mali ES2 drivers",
"os": { "os": {
"type": "android", "type": "android",
"version": { "version": {
...@@ -915,7 +915,12 @@ LONG_STRING_CONST( ...@@ -915,7 +915,12 @@ LONG_STRING_CONST(
} }
}, },
"gl_vendor": "ARM.*", "gl_vendor": "ARM.*",
"gl_renderer": "Mali-400 MP.*", "gl_renderer": "Mali.*",
"gl_type": "gles",
"gl_version": {
"op": "<",
"value": "3.0"
},
"features": [ "features": [
"disable_egl_khr_fence_sync" "disable_egl_khr_fence_sync"
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment