Reenable the small path renderer on the DDL1 bots

The DDL3 bots are now using the small path renderer. This updates
the DDL1 bots to match so we can compare apples to apples.

Change-Id: Ib41dfb0cddcb480c2b9c445444c2ceea4a85a4df
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/309736
Reviewed-by: Eric Boren <borenet@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
This commit is contained in:
Robert Phillips 2020-08-12 12:38:59 -04:00 committed by Skia Commit-Bot
parent ef820beade
commit 34298650dd
2 changed files with 10 additions and 11 deletions

View File

@ -140,7 +140,7 @@ func (b *taskBuilder) dmFlags(internalHardwareLabel string) {
keys = append(keys, "renderer", "skottie")
}
if b.matchExtraConfig("DDL") {
// 'DDL' style means "--skpViewportSize 2048 --pr ~small"
// 'DDL' style means "--skpViewportSize 2048"
keys = append(keys, "style", "DDL")
} else {
keys = append(keys, "style", "default")
@ -468,7 +468,6 @@ func (b *taskBuilder) dmFlags(internalHardwareLabel string) {
// This bot generates comparison images for the large skps and the gms
configs = filter(configs, "gl", "vk", "mtl")
args = append(args, "--skpViewportSize", "2048")
args = append(args, "--pr", "~small")
}
if b.extraConfig("DDL3") {
// This bot generates the real ddl images for the large skps and the gms

File diff suppressed because one or more lines are too long