Run cmdbuffer_es2_dmsaa on the bots

Bug: skia:11396
Change-Id: I793cbce7efab5330a8c4eb41ce2cf425b29aeb15
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/425616
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
This commit is contained in:
Chris Dalton 2021-07-08 00:30:21 -06:00 committed by Skia Commit-Bot
parent e6ed3c280d
commit 7a0541e03d
3 changed files with 6 additions and 2 deletions

View File

@ -275,9 +275,12 @@ func (b *taskBuilder) dmFlags(internalHardwareLabel string) {
skip("gltestthreading gm _ draw_image_set") skip("gltestthreading gm _ draw_image_set")
} }
// CommandBuffer bot *only* runs the cmdbuffer_es2 config. // CommandBuffer bot *only* runs the cmdbuffer_es2 configs.
if b.extraConfig("CommandBuffer") { if b.extraConfig("CommandBuffer") {
configs = []string{"cmdbuffer_es2"} configs = []string{"cmdbuffer_es2"}
if sampleCount > 0 {
configs = append(configs, "cmdbuffer_es2_dmsaa")
}
} }
// Dawn bot *only* runs the dawn config // Dawn bot *only* runs the dawn config

File diff suppressed because one or more lines are too long

View File

@ -95,6 +95,7 @@ static const struct {
{ "angle_gl_es3_msaa4", "gpu", "api=angle_gl_es3,samples=4" }, { "angle_gl_es3_msaa4", "gpu", "api=angle_gl_es3,samples=4" },
{ "angle_gl_es3_msaa8", "gpu", "api=angle_gl_es3,samples=8" }, { "angle_gl_es3_msaa8", "gpu", "api=angle_gl_es3,samples=8" },
{ "cmdbuffer_es2", "gpu", "api=cmdbuffer_es2" }, { "cmdbuffer_es2", "gpu", "api=cmdbuffer_es2" },
{ "cmdbuffer_es2_dmsaa", "gpu", "api=cmdbuffer_es2,dmsaa=true" },
{ "cmdbuffer_es3", "gpu", "api=cmdbuffer_es3" }, { "cmdbuffer_es3", "gpu", "api=cmdbuffer_es3" },
{ "mock", "gpu", "api=mock" }, { "mock", "gpu", "api=mock" },
#ifdef SK_DAWN #ifdef SK_DAWN