blob: 79878062bee17755d28036e328bf8e9723ef1d17 [file] [log] [blame]
Chris Daltond7291ba2019-03-07 14:17:03 -07001/*
2 * Copyright 2019 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -04009#include "include/core/SkBlendMode.h"
10#include "include/core/SkCanvas.h"
11#include "include/core/SkColorSpace.h"
12#include "include/core/SkMatrix.h"
13#include "include/core/SkRect.h"
14#include "include/core/SkRefCnt.h"
15#include "include/core/SkSize.h"
16#include "include/core/SkString.h"
17#include "include/core/SkTypes.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050018#include "include/gpu/GrContext.h"
Robert Phillipsb7bfbc22020-07-01 12:55:01 -040019#include "include/gpu/GrRecordingContext.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040020#include "include/gpu/GrTypes.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040021#include "include/private/GrTypesPriv.h"
22#include "include/private/SkColorData.h"
23#include "src/gpu/GrBuffer.h"
24#include "src/gpu/GrCaps.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040025#include "src/gpu/GrColorSpaceXform.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050026#include "src/gpu/GrContextPriv.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040027#include "src/gpu/GrGeometryProcessor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050028#include "src/gpu/GrMemoryPool.h"
29#include "src/gpu/GrOpFlushState.h"
Greg Daniel2d41d0d2019-08-26 11:08:51 -040030#include "src/gpu/GrOpsRenderPass.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040031#include "src/gpu/GrPaint.h"
32#include "src/gpu/GrPipeline.h"
33#include "src/gpu/GrPrimitiveProcessor.h"
34#include "src/gpu/GrProcessor.h"
35#include "src/gpu/GrProcessorSet.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050036#include "src/gpu/GrRecordingContextPriv.h"
37#include "src/gpu/GrRenderTargetContext.h"
38#include "src/gpu/GrRenderTargetContextPriv.h"
Brian Salomon201cdbb2019-08-14 17:00:30 -040039#include "src/gpu/GrSamplerState.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040040#include "src/gpu/GrShaderCaps.h"
41#include "src/gpu/GrShaderVar.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040042#include "src/gpu/GrSurfaceProxy.h"
43#include "src/gpu/GrTextureProxy.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040044#include "src/gpu/GrUserStencilSettings.h"
45#include "src/gpu/effects/GrPorterDuffXferProcessor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050046#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
47#include "src/gpu/glsl/GrGLSLGeometryProcessor.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040048#include "src/gpu/glsl/GrGLSLPrimitiveProcessor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050049#include "src/gpu/glsl/GrGLSLProgramBuilder.h"
50#include "src/gpu/glsl/GrGLSLVarying.h"
51#include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040052#include "src/gpu/ops/GrDrawOp.h"
53#include "src/gpu/ops/GrOp.h"
Robert Phillips34cea002019-11-21 16:02:34 -050054#include "tools/gpu/ProxyUtils.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040055
56#include <memory>
57#include <utility>
58
59class GrAppliedClip;
60class GrGLSLProgramDataManager;
Chris Daltond7291ba2019-03-07 14:17:03 -070061
62namespace skiagm {
63
64enum class GradType : bool {
65 kHW,
66 kSW
67};
68
69/**
70 * This test ensures that the shaderBuilder's sample offsets and sample mask are correlated with
71 * actual HW sample locations. It does so by drawing pseudo-random subpixel boxes, and only turning
72 * off the samples whose locations fall inside the boxes.
73 */
74class SampleLocationsGM : public GpuGM {
75public:
76 SampleLocationsGM(GradType gradType, GrSurfaceOrigin origin)
77 : fGradType(gradType)
78 , fOrigin(origin) {}
79
80private:
Hal Canaryfa3305a2019-07-18 12:36:54 -040081 SkString onShortName() override {
82 return SkStringPrintf("samplelocations%s%s",
83 (GradType::kHW == fGradType) ? "_hwgrad" : "_swgrad",
84 (kTopLeft_GrSurfaceOrigin == fOrigin) ? "_topleft" : "_botleft");
85 }
86
Chris Daltond7291ba2019-03-07 14:17:03 -070087 SkISize onISize() override { return SkISize::Make(200, 200); }
Robert Phillips95c250c2020-06-29 15:36:12 -040088 DrawResult onDraw(GrRecordingContext*, GrRenderTargetContext*,
89 SkCanvas*, SkString* errorMsg) override;
Chris Daltond7291ba2019-03-07 14:17:03 -070090
91 const GradType fGradType;
92 const GrSurfaceOrigin fOrigin;
93};
94
95////////////////////////////////////////////////////////////////////////////////////////////////////
96// SkSL code.
97
98class SampleLocationsTestProcessor : public GrGeometryProcessor {
99public:
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500100 static GrGeometryProcessor* Make(SkArenaAlloc* arena, GradType gradType) {
101 return arena->make<SampleLocationsTestProcessor>(gradType);
102 }
103
104 const char* name() const override { return "SampleLocationsTestProcessor"; }
105
106 void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const final {
107 b->add32((uint32_t)fGradType);
108 }
109
110 GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const final;
111
112private:
113 friend class ::SkArenaAlloc; // for access to ctor
114
Chris Daltond7291ba2019-03-07 14:17:03 -0700115 SampleLocationsTestProcessor(GradType gradType)
116 : GrGeometryProcessor(kSampleLocationsTestProcessor_ClassID)
117 , fGradType(gradType) {
118 this->setWillUseCustomFeature(CustomFeatures::kSampleLocations);
119 }
Chris Daltond7291ba2019-03-07 14:17:03 -0700120
Chris Daltond7291ba2019-03-07 14:17:03 -0700121 const GradType fGradType;
122
123 class Impl;
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500124
125 typedef GrGeometryProcessor INHERITED;
Chris Daltond7291ba2019-03-07 14:17:03 -0700126};
127
128class SampleLocationsTestProcessor::Impl : public GrGLSLGeometryProcessor {
129 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override {
130 const auto& proc = args.fGP.cast<SampleLocationsTestProcessor>();
131 auto* v = args.fVertBuilder;
132 auto* f = args.fFragBuilder;
133
134 GrGLSLVarying coord(kFloat2_GrSLType);
135 GrGLSLVarying grad(kFloat2_GrSLType);
136 args.fVaryingHandler->addVarying("coord", &coord);
137 if (GradType::kSW == proc.fGradType) {
138 args.fVaryingHandler->addVarying("grad", &grad);
139 }
140
141 // Pixel grid.
142 v->codeAppendf("int x = sk_InstanceID %% 200;");
143 v->codeAppendf("int y = sk_InstanceID / 200;");
144
145 // Create pseudo-random rectangles inside a 16x16 subpixel grid. This works out nicely
146 // because there are 17 positions on the grid (including both edges), and 17 is a great
147 // prime number for generating pseudo-random numbers.
148 v->codeAppendf("int ileft = (sk_InstanceID*929) %% 17;");
149 v->codeAppendf("int iright = ileft + 1 + ((sk_InstanceID*1637) %% (17 - ileft));");
150 v->codeAppendf("int itop = (sk_InstanceID*313) %% 17;");
151 v->codeAppendf("int ibot = itop + 1 + ((sk_InstanceID*1901) %% (17 - itop));");
152
153 // Outset (or inset) the rectangle, for the very likely scenario that samples fall on exact
154 // 16ths of a pixel. GL_SUBPIXEL_BITS is allowed to be as low as 4, so try not to let the
155 // outset value to get too small.
156 v->codeAppendf("float outset = 1/32.0;");
157 v->codeAppendf("outset = (0 == (x + y) %% 2) ? -outset : +outset;");
158 v->codeAppendf("float l = ileft/16.0 - outset;");
159 v->codeAppendf("float r = iright/16.0 + outset;");
160 v->codeAppendf("float t = itop/16.0 - outset;");
161 v->codeAppendf("float b = ibot/16.0 + outset;");
162
163 v->codeAppendf("float2 vertexpos;");
164 v->codeAppendf("vertexpos.x = float(x) + ((0 == (sk_VertexID %% 2)) ? l : r);");
165 v->codeAppendf("vertexpos.y = float(y) + ((0 == (sk_VertexID / 2)) ? t : b);");
166 gpArgs->fPositionVar.set(kFloat2_GrSLType, "vertexpos");
167
168 v->codeAppendf("%s.x = (0 == (sk_VertexID %% 2)) ? -1 : +1;", coord.vsOut());
169 v->codeAppendf("%s.y = (0 == (sk_VertexID / 2)) ? -1 : +1;", coord.vsOut());
170 if (GradType::kSW == proc.fGradType) {
171 v->codeAppendf("%s = 2/float2(r - l, b - t);", grad.vsOut());
172 }
173
174 // Fragment shader: Output RED.
175 f->codeAppendf("%s = half4(1,0,0,1);", args.fOutputColor);
176 f->codeAppendf("%s = half4(1);", args.fOutputCoverage);
177
178 // Now turn off all the samples inside our sub-rectangle. As long as the shaderBuilder's
179 // sample offsets and sample mask are correlated with actual HW sample locations, no red
180 // will bleed through.
181 f->codeAppendf("for (int i = 0; i < %i; ++i) {",
182 f->getProgramBuilder()->effectiveSampleCnt());
183 if (GradType::kHW == proc.fGradType) {
184 f->codeAppendf("float2x2 grad = float2x2(dFdx(%s), dFdy(%s));",
185 coord.fsIn(), coord.fsIn());
186 } else {
187 f->codeAppendf("float2x2 grad = float2x2(%s.x, 0, 0, %s.y);", grad.fsIn(), grad.fsIn());
188 }
189 f->codeAppendf( "float2 samplecoord = %s[i] * grad + %s;",
190 f->sampleOffsets(), coord.fsIn());
191 f->codeAppendf( "if (all(lessThanEqual(abs(samplecoord), float2(1)))) {");
192 f->maskOffMultisampleCoverage(
Chris Dalton0dffbab2019-03-27 13:08:50 -0600193 "~(1 << i)", GrGLSLFPFragmentBuilder::ScopeFlags::kInsideLoop);
Chris Daltond7291ba2019-03-07 14:17:03 -0700194 f->codeAppendf( "}");
195 f->codeAppendf("}");
196 }
197
Brian Osman609f1592020-07-01 15:14:39 -0400198 void setData(const GrGLSLProgramDataManager&, const GrPrimitiveProcessor&) override {}
Chris Daltond7291ba2019-03-07 14:17:03 -0700199};
200
201GrGLSLPrimitiveProcessor* SampleLocationsTestProcessor::createGLSLInstance(
202 const GrShaderCaps&) const {
203 return new Impl();
204}
205
206////////////////////////////////////////////////////////////////////////////////////////////////////
207// Draw Op.
208
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500209static constexpr GrUserStencilSettings gStencilWrite(
210 GrUserStencilSettings::StaticInit<
211 0x0001,
212 GrUserStencilTest::kAlways,
213 0xffff,
214 GrUserStencilOp::kReplace,
215 GrUserStencilOp::kKeep,
216 0xffff>()
217);
218
Chris Daltond7291ba2019-03-07 14:17:03 -0700219class SampleLocationsTestOp : public GrDrawOp {
220public:
221 DEFINE_OP_CLASS_ID
222
223 static std::unique_ptr<GrDrawOp> Make(
224 GrRecordingContext* ctx, const SkMatrix& viewMatrix, GradType gradType) {
225 GrOpMemoryPool* pool = ctx->priv().opMemoryPool();
226 return pool->allocate<SampleLocationsTestOp>(gradType);
227 }
228
229private:
230 SampleLocationsTestOp(GradType gradType) : GrDrawOp(ClassID()), fGradType(gradType) {
Greg Daniel5faf4742019-10-01 15:14:44 -0400231 this->setBounds(SkRect::MakeIWH(200, 200), HasAABloat::kNo, IsHairline::kNo);
Chris Daltond7291ba2019-03-07 14:17:03 -0700232 }
233
234 const char* name() const override { return "SampleLocationsTestOp"; }
235 FixedFunctionFlags fixedFunctionFlags() const override {
236 return FixedFunctionFlags::kUsesHWAA | FixedFunctionFlags::kUsesStencil;
237 }
Chris Dalton6ce447a2019-06-23 18:07:38 -0600238 GrProcessorSet::Analysis finalize(const GrCaps&, const GrAppliedClip*,
239 bool hasMixedSampledCoverage, GrClampType) override {
Chris Daltond7291ba2019-03-07 14:17:03 -0700240 return GrProcessorSet::EmptySetAnalysis();
241 }
Chris Daltond7291ba2019-03-07 14:17:03 -0700242
Robert Phillipsac6156c2020-02-28 16:02:40 -0500243
244 GrProgramInfo* createProgramInfo(const GrCaps* caps,
245 SkArenaAlloc* arena,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400246 const GrSurfaceProxyView* writeView,
Robert Phillipsac6156c2020-02-28 16:02:40 -0500247 GrAppliedClip&& appliedClip,
248 const GrXferProcessor::DstProxyView& dstProxyView) const {
249 GrGeometryProcessor* geomProc = SampleLocationsTestProcessor::Make(arena, fGradType);
250
251 GrPipeline::InputFlags flags = GrPipeline::InputFlags::kHWAntialias;
252
Brian Salomon8afde5f2020-04-01 16:22:00 -0400253 return sk_gpu_test::CreateProgramInfo(caps, arena, writeView,
Robert Phillipsac6156c2020-02-28 16:02:40 -0500254 std::move(appliedClip), dstProxyView,
255 geomProc, SkBlendMode::kSrcOver,
256 GrPrimitiveType::kTriangleStrip,
257 flags, &gStencilWrite);
258 }
259
260 GrProgramInfo* createProgramInfo(GrOpFlushState* flushState) const {
261 return this->createProgramInfo(&flushState->caps(),
262 flushState->allocator(),
Brian Salomon8afde5f2020-04-01 16:22:00 -0400263 flushState->writeView(),
Robert Phillipsac6156c2020-02-28 16:02:40 -0500264 flushState->detachAppliedClip(),
265 flushState->dstProxyView());
266 }
267
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500268 void onPrePrepare(GrRecordingContext* context,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400269 const GrSurfaceProxyView* writeView,
Robert Phillips34cea002019-11-21 16:02:34 -0500270 GrAppliedClip* clip,
Robert Phillips8053c972019-11-21 10:44:53 -0500271 const GrXferProcessor::DstProxyView& dstProxyView) final {
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500272 // We're going to create the GrProgramInfo (and the GrPipeline and geometry processor
273 // it relies on) in the DDL-record-time arena.
274 SkArenaAlloc* arena = context->priv().recordTimeAllocator();
Chris Daltonbaa1b352019-04-03 12:03:00 -0600275
Robert Phillips34cea002019-11-21 16:02:34 -0500276 // This is equivalent to a GrOpFlushState::detachAppliedClip
Michael Ludwigd1d997e2020-06-04 15:52:44 -0400277 GrAppliedClip appliedClip = clip ? std::move(*clip) : GrAppliedClip::Disabled();
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500278
Brian Salomon8afde5f2020-04-01 16:22:00 -0400279 fProgramInfo = this->createProgramInfo(context->priv().caps(), arena, writeView,
Robert Phillipsac6156c2020-02-28 16:02:40 -0500280 std::move(appliedClip), dstProxyView);
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500281
Robert Phillipsac6156c2020-02-28 16:02:40 -0500282 context->priv().recordProgramInfo(fProgramInfo);
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500283 }
284
285 void onPrepare(GrOpFlushState*) final {}
286
287 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) final {
Robert Phillips34cea002019-11-21 16:02:34 -0500288 if (!fProgramInfo) {
Robert Phillipsac6156c2020-02-28 16:02:40 -0500289 fProgramInfo = this->createProgramInfo(flushState);
Robert Phillips34cea002019-11-21 16:02:34 -0500290 }
291
Chris Daltonaa0e45c2020-03-16 10:05:11 -0600292 flushState->bindPipelineAndScissorClip(*fProgramInfo, SkRect::MakeIWH(200, 200));
293 flushState->bindBuffers(nullptr, nullptr, nullptr);
294 flushState->drawInstanced(200*200, 0, 4, 0);
Chris Daltond7291ba2019-03-07 14:17:03 -0700295 }
296
297 const GradType fGradType;
298
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500299 // The program info (and both the GrPipeline and GrPrimitiveProcessor it relies on), when
Robert Phillips34cea002019-11-21 16:02:34 -0500300 // allocated, are allocated in either the ddl-record-time or flush-time arena. It is the
301 // arena's job to free up their memory so we just have a bare programInfo pointer here. We
302 // don't even store the GrPipeline and GrPrimitiveProcessor pointers here bc they are
303 // guaranteed to have the same lifetime as the program info.
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500304 GrProgramInfo* fProgramInfo = nullptr;
305
Chris Daltond7291ba2019-03-07 14:17:03 -0700306 friend class ::GrOpMemoryPool; // for ctor
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500307
308 typedef GrDrawOp INHERITED;
Chris Daltond7291ba2019-03-07 14:17:03 -0700309};
310
311////////////////////////////////////////////////////////////////////////////////////////////////////
312// Test.
313
Robert Phillips95c250c2020-06-29 15:36:12 -0400314DrawResult SampleLocationsGM::onDraw(GrRecordingContext* ctx, GrRenderTargetContext* rtc,
315 SkCanvas* canvas, SkString* errorMsg) {
Chris Daltond7291ba2019-03-07 14:17:03 -0700316 if (!ctx->priv().caps()->sampleLocationsSupport()) {
317 *errorMsg = "Requires support for sample locations.";
318 return DrawResult::kSkip;
319 }
Chris Dalton8a64a442019-10-29 18:54:58 -0600320 if (!ctx->priv().caps()->shaderCaps()->sampleMaskSupport()) {
321 *errorMsg = "Requires support for sample mask.";
Chris Daltond7291ba2019-03-07 14:17:03 -0700322 return DrawResult::kSkip;
323 }
Chris Dalton03fdf6a2020-04-07 12:31:59 -0600324 if (!ctx->priv().caps()->drawInstancedSupport()) {
325 *errorMsg = "Requires support for instanced rendering.";
326 return DrawResult::kSkip;
327 }
Chris Daltoneffee202019-07-01 22:28:03 -0600328 if (rtc->numSamples() <= 1 && !ctx->priv().caps()->mixedSamplesSupport()) {
329 *errorMsg = "MSAA and mixed samples only.";
330 return DrawResult::kSkip;
331 }
332
Greg Daniele20fcad2020-01-08 11:52:34 -0500333 auto offscreenRTC = GrRenderTargetContext::Make(
334 ctx, rtc->colorInfo().colorType(), nullptr, SkBackingFit::kExact, {200, 200},
335 rtc->numSamples(), GrMipMapped::kNo, GrProtected::kNo, fOrigin);
Chris Daltoneffee202019-07-01 22:28:03 -0600336 if (!offscreenRTC) {
337 *errorMsg = "Failed to create offscreen render target.";
338 return DrawResult::kFail;
339 }
340 if (offscreenRTC->numSamples() <= 1 &&
Greg Daniel46e366a2019-12-16 14:38:36 -0500341 !offscreenRTC->asRenderTargetProxy()->canUseMixedSamples(*ctx->priv().caps())) {
Chris Daltoneffee202019-07-01 22:28:03 -0600342 *errorMsg = "MSAA and mixed samples only.";
343 return DrawResult::kSkip;
344 }
Chris Daltond7291ba2019-03-07 14:17:03 -0700345
346 static constexpr GrUserStencilSettings kStencilCover(
347 GrUserStencilSettings::StaticInit<
348 0x0000,
349 GrUserStencilTest::kNotEqual,
350 0xffff,
351 GrUserStencilOp::kZero,
352 GrUserStencilOp::kKeep,
353 0xffff>()
354 );
355
Michael Ludwig81d41722020-05-26 16:57:38 -0400356 offscreenRTC->clear({0,1,0,1});
Chris Daltond7291ba2019-03-07 14:17:03 -0700357
Chris Daltoneffee202019-07-01 22:28:03 -0600358 // Stencil.
359 offscreenRTC->priv().testingOnly_addDrawOp(
360 SampleLocationsTestOp::Make(ctx, canvas->getTotalMatrix(), fGradType));
Chris Dalton6ce447a2019-06-23 18:07:38 -0600361
Chris Daltoneffee202019-07-01 22:28:03 -0600362 // Cover.
363 GrPaint coverPaint;
364 coverPaint.setColor4f({1,0,0,1});
365 coverPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrcOver));
Michael Ludwig7c12e282020-05-29 09:54:07 -0400366 rtc->priv().stencilRect(nullptr, &kStencilCover, std::move(coverPaint), GrAA::kNo,
Chris Daltoneffee202019-07-01 22:28:03 -0600367 SkMatrix::I(), SkRect::MakeWH(200, 200));
Chris Daltond7291ba2019-03-07 14:17:03 -0700368
Chris Daltoneffee202019-07-01 22:28:03 -0600369 // Copy offscreen texture to canvas.
Michael Ludwig7c12e282020-05-29 09:54:07 -0400370 rtc->drawTexture(nullptr, offscreenRTC->readSurfaceView(),
Greg Daniel40903af2020-01-30 14:55:05 -0500371 offscreenRTC->colorInfo().alphaType(),
Brian Salomonfc118442019-11-22 19:09:27 -0500372 GrSamplerState::Filter::kNearest, SkBlendMode::kSrc, SK_PMColor4fWHITE,
373 {0,0,200,200}, {0,0,200,200}, GrAA::kNo, GrQuadAAFlags::kNone,
374 SkCanvas::SrcRectConstraint::kStrict_SrcRectConstraint, SkMatrix::I(),
375 nullptr);
Chris Daltond7291ba2019-03-07 14:17:03 -0700376
377 return skiagm::DrawResult::kOk;
378}
379
380DEF_GM( return new SampleLocationsGM(GradType::kHW, kTopLeft_GrSurfaceOrigin); )
381DEF_GM( return new SampleLocationsGM(GradType::kHW, kBottomLeft_GrSurfaceOrigin); )
382DEF_GM( return new SampleLocationsGM(GradType::kSW, kTopLeft_GrSurfaceOrigin); )
383DEF_GM( return new SampleLocationsGM(GradType::kSW, kBottomLeft_GrSurfaceOrigin); )
384
385}