Disable StructsInFunctions test on Adreno.

This test still fails on Adreno 330, even after tweaking it.

Change-Id: I0ba66420c07931d7b3acb5dac5d2760a7369a62d
Bug: skia:11929
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/402780
Auto-Submit: John Stiles <johnstiles@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
diff --git a/infra/bots/gen_tasks_logic/dm_flags.go b/infra/bots/gen_tasks_logic/dm_flags.go
index d0fd876..28a03b0 100644
--- a/infra/bots/gen_tasks_logic/dm_flags.go
+++ b/infra/bots/gen_tasks_logic/dm_flags.go
@@ -837,9 +837,10 @@
 		}
 	}
 
-	if b.matchGpu("Adreno[456][0-9][0-9]") { // disable broken tests on Adreno 4/5/6xx
+	if b.matchGpu("Adreno[3456][0-9][0-9]") { // disable broken tests on Adreno 3/4/5/6xx
 		skip("_", "tests", "_", "SkSLMatrixEquality_GPU")      // skia:11308
 		skip("_", "tests", "_", "DSLFPTest_SwitchStatement")   // skia:11891
+		skip("_", "tests", "_", "SkSLStructsInFunctions_GPU")  // skia:11929
 	}
 
 	match := []string{}