aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/perf.py
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2018-06-19 16:00:40 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-19 21:15:18 +0000
commit0e4041f5c962dd16c4a69cbd9ff35685e9519ff3 (patch)
tree09b89a6f52f52082ee74d2f596f42750027678e8 /infra/bots/recipes/perf.py
parentc069a57301a468dbc45f3f3775b623e5532f9398 (diff)
update software DM/nanobench configs for color testing
- Rename 'srgbnl' to just 'srgb'. - Add 'narrow' and 'enarrow' for testing a gamut narrower than sRGB. Tested by running xfermodes2 in DM... all look different, what a mess. I also ran a few nanobenches and they seemed somewhat sane. Change-Id: Iacdc391dc0eef4153a76f5b4f78d72c57a4371ee Reviewed-on: https://skia-review.googlesource.com/135871 Commit-Queue: Mike Klein <mtklein@chromium.org> Auto-Submit: Mike Klein <mtklein@chromium.org> Reviewed-by: Brian Osman <brianosman@google.com>
Diffstat (limited to 'infra/bots/recipes/perf.py')
-rw-r--r--infra/bots/recipes/perf.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/infra/bots/recipes/perf.py b/infra/bots/recipes/perf.py
index da9afbf3fd..139a8b5d39 100644
--- a/infra/bots/recipes/perf.py
+++ b/infra/bots/recipes/perf.py
@@ -61,7 +61,13 @@ def nanobench_flags(api, bot):
configs.extend(['8888', 'nonrendering'])
if '-GCE-' in bot:
- configs += [ 'f16' ]
+ configs += [
+ 'f16',
+ 'srgb',
+ 'esrgb',
+ 'narrow',
+ 'enarrow',
+ ]
elif api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU':
args.append('--nocpu')