Pass the GraphiteTestContext to the most-complex DEF_TESTs.
This will let us check the ContextType inside a test.
The ContextType has more information than the backend; in
particular, it exposes the active Dawn backend.
Bug: b/40044139
Change-Id: I514104a15ee20363c5ecbec6ba809290400e066b
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/757237
Auto-Submit: John Stiles <[email protected]>
Reviewed-by: Brian Osman <[email protected]>
diff --git a/dm/DMGpuTestProcs.cpp b/dm/DMGpuTestProcs.cpp
index aba40a4..e789a33 100644
--- a/dm/DMGpuTestProcs.cpp
+++ b/dm/DMGpuTestProcs.cpp
@@ -130,13 +130,12 @@
}
skiatest::graphite::ContextInfo ctxInfo = factory.getContextInfo(contextType);
- skgpu::graphite::Context* context = ctxInfo.fContext;
- if (!context) {
+ if (!ctxInfo.fContext) {
continue;
}
ReporterContext ctx(reporter, SkString(skgpu::ContextTypeName(contextType)));
- (*test)(reporter, context);
+ (*test)(reporter, ctxInfo.fContext, ctxInfo.fTestContext);
}
}