Commit 554b17d5 authored by Vikas Soni's avatar Vikas Soni Committed by Commit Bot

Disable AImageReader on Imagination and NVIDIA GPU.

Disable AImageReader on Imagination and NVIDIA gpu as they are buggy.
Remove android version checks for disabling AImageReader as its not
required.

Bug: 838725
Change-Id: Ie05ecffbec4f758175a38bed81da98aed2aebeb3
Reviewed-on: https://chromium-review.googlesource.com/c/1308602Reviewed-by: default avatarFrank Liberato <liberato@chromium.org>
Reviewed-by: default avatarZhenyao Mo <zmo@chromium.org>
Commit-Queue: vikas soni <vikassoni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#604139}
parent 31b6dc72
...@@ -2898,13 +2898,9 @@ ...@@ -2898,13 +2898,9 @@
{ {
"id":275, "id":275,
"cr_bugs": [838725], "cr_bugs": [838725],
"description": "Disable AImageReader on ARM GPUs for Android O+ because of gpu hang", "description": "Disable AImageReader on ARM GPUs as its buggy.",
"os": { "os": {
"type": "android", "type": "android"
"version": {
"op": ">=",
"value": "8.0"
}
}, },
"gl_vendor": "ARM.*", "gl_vendor": "ARM.*",
"features": [ "features": [
...@@ -2951,6 +2947,30 @@ ...@@ -2951,6 +2947,30 @@
"features": [ "features": [
"use_copyteximage2d_instead_of_readpixels_on_multisampled_textures" "use_copyteximage2d_instead_of_readpixels_on_multisampled_textures"
] ]
},
{
"id":281,
"cr_bugs": [838725],
"description": "Disable AImageReader on Imagination Technologies GPU as its buggy.",
"os": {
"type": "android"
},
"gl_vendor": "Imagination Technologies.*",
"features": [
"disable_aimagereader"
]
},
{
"id":282,
"cr_bugs": [838725],
"description": "Disable AImageReader on NVIDIA GPU for as its buggy.",
"os": {
"type": "android"
},
"gl_vendor": "NVIDIA.*",
"features": [
"disable_aimagereader"
]
} }
] ]
} }
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