Commit d2c0e890 authored by Vikas Soni's avatar Vikas Soni Committed by Commit Bot

Disable Gpu Raster only on VideoCore V GPUs.

Using a regex "V.*" to disable gpu raster on VideoCore V gpus was also
causing it to be disable for VideoCore VI+. Hence update the regex to
limit it only to VideoCore V.
Also update it to disable gpu raster only on android version <=M.

Bug: 710273
Change-Id: Id34124abb7afadf1a41a4804be6542253d469c4b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2321112
Commit-Queue: vikas soni <vikassoni@chromium.org>
Reviewed-by: default avatarKhushal <khushalsagar@chromium.org>
Cr-Commit-Position: refs/heads/master@{#792383}
parent b6ef20b1
...@@ -1368,12 +1368,16 @@ ...@@ -1368,12 +1368,16 @@
}, },
{ {
"id": 148, "id": 148,
"description": "VideoCore V has corrupt rendering with GPU Rasterization", "description": "VideoCore V has corrupt rendering with GPU Rasterization on Android versions below N.",
"cr_bugs": [710273], "cr_bugs": [710273],
"os": { "os": {
"type": "android" "type": "android",
"version": {
"op": "<",
"value": "7.0"
}
}, },
"gl_renderer": ".*VideoCore V.*", "gl_renderer": ".*VideoCore V HW.*",
"features": [ "features": [
"gpu_rasterization" "gpu_rasterization"
] ]
......
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