Run dmsaa on all supported Mac and SwiftShader bots

Bug: skia:11396
Change-Id: I02b733d348c0e1fafb3d05eb14d06d15faf86b07
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/429057
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
This commit is contained in:
Chris Dalton 2021-07-15 13:14:32 -06:00 committed by Skia Commit-Bot
parent 55f0d7acfa
commit 24f6879422
2 changed files with 8 additions and 8 deletions

View File

@ -178,7 +178,7 @@ func (b *taskBuilder) dmFlags(internalHardwareLabel string) {
sampleCount := 0
glPrefix := ""
if b.extraConfig("SwiftShader") {
configs = append(configs, "gles", "glesdft")
configs = append(configs, "gles", "glesdft", "glesdmsaa")
} else if b.cpu() {
args = append(args, "--nogpu")
@ -234,7 +234,7 @@ func (b *taskBuilder) dmFlags(internalHardwareLabel string) {
if sampleCount > 0 {
configs = append(configs, fmt.Sprintf("%smsaa%d", glPrefix, sampleCount))
// Temporarily limit the bots we test dynamic MSAA on.
if b.gpu("QuadroP400", "MaliG77", "AppleM1") {
if b.gpu("QuadroP400", "MaliG77") || b.matchOs("Mac") {
configs = append(configs, fmt.Sprintf("%sdmsaa", glPrefix))
}
}

File diff suppressed because one or more lines are too long