Disable GrMeshTests on Intel Iris Plus

Bug: skia:7603
Change-Id: I2d0406b544d03efbd5caa165ecf2f099d8d73881
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/514217
Reviewed-by: Erik Rose <erikrose@google.com>
Commit-Queue: Jim Van Verth <jvanverth@google.com>
This commit is contained in:
Jim Van Verth 2022-03-01 14:16:57 -05:00 committed by SkCQ
parent c396dd16ba
commit 38de60ea95
2 changed files with 9 additions and 4 deletions

View File

@ -1149,6 +1149,11 @@ func (b *taskBuilder) dmFlags(internalHardwareLabel string) {
match = append(match, "~^GrMeshTest$")
}
if b.matchOs("Mac") && b.gpu("IntelIrisPlus") {
// skia:7603
match = append(match, "~^GrMeshTest$")
}
if b.extraConfig("Vulkan") && b.model("GalaxyS20") {
// skia:10247
match = append(match, "~VkPrepareForExternalIOQueueTransitionTest")

File diff suppressed because one or more lines are too long