Blacklist image sources with 1010102 configs

It's not clear that we should ever decode to this format.

Bug: skia:7686
Change-Id: I9f2cc6e72d89d06bf9491d695b4f64b99bfa0392
Reviewed-on: https://skia-review.googlesource.com/111841
Reviewed-by: Leon Scroggins <scroggo@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
This commit is contained in:
Brian Osman 2018-03-02 14:56:15 -05:00 committed by Skia Commit-Bot
parent 29acf84b36
commit 419abf335a
5 changed files with 20 additions and 0 deletions

View File

@ -172,6 +172,10 @@
"colorImage",
"svg",
"--blacklist",
"vk1010102",
"image",
"_",
"_",
"_",
"svg",
"_",

View File

@ -177,6 +177,10 @@
"colorImage",
"svg",
"--blacklist",
"gl1010102",
"image",
"_",
"_",
"_",
"svg",
"_",

View File

@ -177,6 +177,10 @@
"colorImage",
"svg",
"--blacklist",
"gl1010102",
"image",
"_",
"_",
"_",
"svg",
"_",

View File

@ -177,6 +177,10 @@
"colorImage",
"svg",
"--blacklist",
"gl1010102",
"image",
"_",
"_",
"_",
"svg",
"_",

View File

@ -216,8 +216,12 @@ def dm_flags(api, bot):
if 'QuadroP400' in bot and api.vars.is_linux:
if 'Vulkan' in bot:
configs.append('vk1010102')
# Decoding transparent images to 1010102 just looks bad
blacklist('vk1010102 image _ _')
else:
configs.append('gl1010102')
# Decoding transparent images to 1010102 just looks bad
blacklist('gl1010102 image _ _')
if 'ChromeOS' in bot:
# Just run GLES for now - maybe add gles_msaa4 in the future