blob: d72aa9a2d019e7bde2f8ca8b770d0033f5dba021 [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"
Ben Wagner7fde8e12019-05-01 17:28:53 -040019#include "include/gpu/GrTypes.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050020#include "include/private/GrRecordingContext.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"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050025#include "src/gpu/GrClip.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040026#include "src/gpu/GrColorSpaceXform.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050027#include "src/gpu/GrContextPriv.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040028#include "src/gpu/GrGeometryProcessor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050029#include "src/gpu/GrMemoryPool.h"
30#include "src/gpu/GrOpFlushState.h"
Greg Daniel2d41d0d2019-08-26 11:08:51 -040031#include "src/gpu/GrOpsRenderPass.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040032#include "src/gpu/GrPaint.h"
33#include "src/gpu/GrPipeline.h"
34#include "src/gpu/GrPrimitiveProcessor.h"
35#include "src/gpu/GrProcessor.h"
36#include "src/gpu/GrProcessorSet.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050037#include "src/gpu/GrRecordingContextPriv.h"
38#include "src/gpu/GrRenderTargetContext.h"
39#include "src/gpu/GrRenderTargetContextPriv.h"
Brian Salomon201cdbb2019-08-14 17:00:30 -040040#include "src/gpu/GrSamplerState.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040041#include "src/gpu/GrShaderCaps.h"
42#include "src/gpu/GrShaderVar.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040043#include "src/gpu/GrSurfaceProxy.h"
44#include "src/gpu/GrTextureProxy.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040045#include "src/gpu/GrUserStencilSettings.h"
46#include "src/gpu/effects/GrPorterDuffXferProcessor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050047#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
48#include "src/gpu/glsl/GrGLSLGeometryProcessor.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040049#include "src/gpu/glsl/GrGLSLPrimitiveProcessor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050050#include "src/gpu/glsl/GrGLSLProgramBuilder.h"
51#include "src/gpu/glsl/GrGLSLVarying.h"
52#include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040053#include "src/gpu/ops/GrDrawOp.h"
54#include "src/gpu/ops/GrOp.h"
Robert Phillips34cea002019-11-21 16:02:34 -050055#include "tools/gpu/ProxyUtils.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040056
57#include <memory>
58#include <utility>
59
60class GrAppliedClip;
61class GrGLSLProgramDataManager;
Chris Daltond7291ba2019-03-07 14:17:03 -070062
63namespace skiagm {
64
65enum class GradType : bool {
66 kHW,
67 kSW
68};
69
70/**
71 * This test ensures that the shaderBuilder's sample offsets and sample mask are correlated with
72 * actual HW sample locations. It does so by drawing pseudo-random subpixel boxes, and only turning
73 * off the samples whose locations fall inside the boxes.
74 */
75class SampleLocationsGM : public GpuGM {
76public:
77 SampleLocationsGM(GradType gradType, GrSurfaceOrigin origin)
78 : fGradType(gradType)
79 , fOrigin(origin) {}
80
81private:
Hal Canaryfa3305a2019-07-18 12:36:54 -040082 SkString onShortName() override {
83 return SkStringPrintf("samplelocations%s%s",
84 (GradType::kHW == fGradType) ? "_hwgrad" : "_swgrad",
85 (kTopLeft_GrSurfaceOrigin == fOrigin) ? "_topleft" : "_botleft");
86 }
87
Chris Daltond7291ba2019-03-07 14:17:03 -070088 SkISize onISize() override { return SkISize::Make(200, 200); }
89 DrawResult onDraw(GrContext*, GrRenderTargetContext*, SkCanvas*, SkString* errorMsg) override;
90
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
198 void setData(const GrGLSLProgramDataManager&, const GrPrimitiveProcessor&,
Brian Salomonc241b582019-11-27 08:57:17 -0500199 const CoordTransformRange&) override {}
Chris Daltond7291ba2019-03-07 14:17:03 -0700200};
201
202GrGLSLPrimitiveProcessor* SampleLocationsTestProcessor::createGLSLInstance(
203 const GrShaderCaps&) const {
204 return new Impl();
205}
206
207////////////////////////////////////////////////////////////////////////////////////////////////////
208// Draw Op.
209
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500210static constexpr GrUserStencilSettings gStencilWrite(
211 GrUserStencilSettings::StaticInit<
212 0x0001,
213 GrUserStencilTest::kAlways,
214 0xffff,
215 GrUserStencilOp::kReplace,
216 GrUserStencilOp::kKeep,
217 0xffff>()
218);
219
Chris Daltond7291ba2019-03-07 14:17:03 -0700220class SampleLocationsTestOp : public GrDrawOp {
221public:
222 DEFINE_OP_CLASS_ID
223
224 static std::unique_ptr<GrDrawOp> Make(
225 GrRecordingContext* ctx, const SkMatrix& viewMatrix, GradType gradType) {
226 GrOpMemoryPool* pool = ctx->priv().opMemoryPool();
227 return pool->allocate<SampleLocationsTestOp>(gradType);
228 }
229
230private:
231 SampleLocationsTestOp(GradType gradType) : GrDrawOp(ClassID()), fGradType(gradType) {
Greg Daniel5faf4742019-10-01 15:14:44 -0400232 this->setBounds(SkRect::MakeIWH(200, 200), HasAABloat::kNo, IsHairline::kNo);
Chris Daltond7291ba2019-03-07 14:17:03 -0700233 }
234
235 const char* name() const override { return "SampleLocationsTestOp"; }
236 FixedFunctionFlags fixedFunctionFlags() const override {
237 return FixedFunctionFlags::kUsesHWAA | FixedFunctionFlags::kUsesStencil;
238 }
Chris Dalton6ce447a2019-06-23 18:07:38 -0600239 GrProcessorSet::Analysis finalize(const GrCaps&, const GrAppliedClip*,
240 bool hasMixedSampledCoverage, GrClampType) override {
Chris Daltond7291ba2019-03-07 14:17:03 -0700241 return GrProcessorSet::EmptySetAnalysis();
242 }
Chris Daltond7291ba2019-03-07 14:17:03 -0700243
Robert Phillipsac6156c2020-02-28 16:02:40 -0500244
245 GrProgramInfo* createProgramInfo(const GrCaps* caps,
246 SkArenaAlloc* arena,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400247 const GrSurfaceProxyView* writeView,
Robert Phillipsac6156c2020-02-28 16:02:40 -0500248 GrAppliedClip&& appliedClip,
249 const GrXferProcessor::DstProxyView& dstProxyView) const {
250 GrGeometryProcessor* geomProc = SampleLocationsTestProcessor::Make(arena, fGradType);
251
252 GrPipeline::InputFlags flags = GrPipeline::InputFlags::kHWAntialias;
253
Brian Salomon8afde5f2020-04-01 16:22:00 -0400254 return sk_gpu_test::CreateProgramInfo(caps, arena, writeView,
Robert Phillipsac6156c2020-02-28 16:02:40 -0500255 std::move(appliedClip), dstProxyView,
256 geomProc, SkBlendMode::kSrcOver,
257 GrPrimitiveType::kTriangleStrip,
258 flags, &gStencilWrite);
259 }
260
261 GrProgramInfo* createProgramInfo(GrOpFlushState* flushState) const {
262 return this->createProgramInfo(&flushState->caps(),
263 flushState->allocator(),
Brian Salomon8afde5f2020-04-01 16:22:00 -0400264 flushState->writeView(),
Robert Phillipsac6156c2020-02-28 16:02:40 -0500265 flushState->detachAppliedClip(),
266 flushState->dstProxyView());
267 }
268
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500269 void onPrePrepare(GrRecordingContext* context,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400270 const GrSurfaceProxyView* writeView,
Robert Phillips34cea002019-11-21 16:02:34 -0500271 GrAppliedClip* clip,
Robert Phillips8053c972019-11-21 10:44:53 -0500272 const GrXferProcessor::DstProxyView& dstProxyView) final {
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500273 // We're going to create the GrProgramInfo (and the GrPipeline and geometry processor
274 // it relies on) in the DDL-record-time arena.
275 SkArenaAlloc* arena = context->priv().recordTimeAllocator();
Chris Daltonbaa1b352019-04-03 12:03:00 -0600276
Robert Phillips34cea002019-11-21 16:02:34 -0500277 // This is equivalent to a GrOpFlushState::detachAppliedClip
278 GrAppliedClip appliedClip = clip ? std::move(*clip) : GrAppliedClip();
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500279
Brian Salomon8afde5f2020-04-01 16:22:00 -0400280 fProgramInfo = this->createProgramInfo(context->priv().caps(), arena, writeView,
Robert Phillipsac6156c2020-02-28 16:02:40 -0500281 std::move(appliedClip), dstProxyView);
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500282
Robert Phillipsac6156c2020-02-28 16:02:40 -0500283 context->priv().recordProgramInfo(fProgramInfo);
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500284 }
285
286 void onPrepare(GrOpFlushState*) final {}
287
288 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) final {
Robert Phillips34cea002019-11-21 16:02:34 -0500289 if (!fProgramInfo) {
Robert Phillipsac6156c2020-02-28 16:02:40 -0500290 fProgramInfo = this->createProgramInfo(flushState);
Robert Phillips34cea002019-11-21 16:02:34 -0500291 }
292
Chris Daltonaa0e45c2020-03-16 10:05:11 -0600293 flushState->bindPipelineAndScissorClip(*fProgramInfo, SkRect::MakeIWH(200, 200));
294 flushState->bindBuffers(nullptr, nullptr, nullptr);
295 flushState->drawInstanced(200*200, 0, 4, 0);
Chris Daltond7291ba2019-03-07 14:17:03 -0700296 }
297
298 const GradType fGradType;
299
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500300 // The program info (and both the GrPipeline and GrPrimitiveProcessor it relies on), when
Robert Phillips34cea002019-11-21 16:02:34 -0500301 // allocated, are allocated in either the ddl-record-time or flush-time arena. It is the
302 // arena's job to free up their memory so we just have a bare programInfo pointer here. We
303 // don't even store the GrPipeline and GrPrimitiveProcessor pointers here bc they are
304 // guaranteed to have the same lifetime as the program info.
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500305 GrProgramInfo* fProgramInfo = nullptr;
306
Chris Daltond7291ba2019-03-07 14:17:03 -0700307 friend class ::GrOpMemoryPool; // for ctor
Robert Phillipsfbfc3552019-11-18 11:50:54 -0500308
309 typedef GrDrawOp INHERITED;
Chris Daltond7291ba2019-03-07 14:17:03 -0700310};
311
312////////////////////////////////////////////////////////////////////////////////////////////////////
313// Test.
314
Chris Daltond7291ba2019-03-07 14:17:03 -0700315DrawResult SampleLocationsGM::onDraw(
316 GrContext* ctx, GrRenderTargetContext* rtc, SkCanvas* canvas, SkString* errorMsg) {
Chris Daltond7291ba2019-03-07 14:17:03 -0700317 if (!ctx->priv().caps()->sampleLocationsSupport()) {
318 *errorMsg = "Requires support for sample locations.";
319 return DrawResult::kSkip;
320 }
Chris Dalton8a64a442019-10-29 18:54:58 -0600321 if (!ctx->priv().caps()->shaderCaps()->sampleMaskSupport()) {
322 *errorMsg = "Requires support for sample mask.";
Chris Daltond7291ba2019-03-07 14:17:03 -0700323 return DrawResult::kSkip;
324 }
Chris Daltoneffee202019-07-01 22:28:03 -0600325 if (rtc->numSamples() <= 1 && !ctx->priv().caps()->mixedSamplesSupport()) {
326 *errorMsg = "MSAA and mixed samples only.";
327 return DrawResult::kSkip;
328 }
329
Greg Daniele20fcad2020-01-08 11:52:34 -0500330 auto offscreenRTC = GrRenderTargetContext::Make(
331 ctx, rtc->colorInfo().colorType(), nullptr, SkBackingFit::kExact, {200, 200},
332 rtc->numSamples(), GrMipMapped::kNo, GrProtected::kNo, fOrigin);
Chris Daltoneffee202019-07-01 22:28:03 -0600333 if (!offscreenRTC) {
334 *errorMsg = "Failed to create offscreen render target.";
335 return DrawResult::kFail;
336 }
337 if (offscreenRTC->numSamples() <= 1 &&
Greg Daniel46e366a2019-12-16 14:38:36 -0500338 !offscreenRTC->asRenderTargetProxy()->canUseMixedSamples(*ctx->priv().caps())) {
Chris Daltoneffee202019-07-01 22:28:03 -0600339 *errorMsg = "MSAA and mixed samples only.";
340 return DrawResult::kSkip;
341 }
Chris Daltond7291ba2019-03-07 14:17:03 -0700342
343 static constexpr GrUserStencilSettings kStencilCover(
344 GrUserStencilSettings::StaticInit<
345 0x0000,
346 GrUserStencilTest::kNotEqual,
347 0xffff,
348 GrUserStencilOp::kZero,
349 GrUserStencilOp::kKeep,
350 0xffff>()
351 );
352
Chris Daltoneffee202019-07-01 22:28:03 -0600353 offscreenRTC->clear(nullptr, {0,1,0,1}, GrRenderTargetContext::CanClearFullscreen::kYes);
Chris Daltond7291ba2019-03-07 14:17:03 -0700354
Chris Daltoneffee202019-07-01 22:28:03 -0600355 // Stencil.
356 offscreenRTC->priv().testingOnly_addDrawOp(
357 SampleLocationsTestOp::Make(ctx, canvas->getTotalMatrix(), fGradType));
Chris Dalton6ce447a2019-06-23 18:07:38 -0600358
Chris Daltoneffee202019-07-01 22:28:03 -0600359 // Cover.
360 GrPaint coverPaint;
361 coverPaint.setColor4f({1,0,0,1});
362 coverPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrcOver));
363 rtc->priv().stencilRect(GrNoClip(), &kStencilCover, std::move(coverPaint), GrAA::kNo,
364 SkMatrix::I(), SkRect::MakeWH(200, 200));
Chris Daltond7291ba2019-03-07 14:17:03 -0700365
Chris Daltoneffee202019-07-01 22:28:03 -0600366 // Copy offscreen texture to canvas.
Greg Daniel40903af2020-01-30 14:55:05 -0500367 rtc->drawTexture(GrNoClip(), offscreenRTC->readSurfaceView(),
368 offscreenRTC->colorInfo().alphaType(),
Brian Salomonfc118442019-11-22 19:09:27 -0500369 GrSamplerState::Filter::kNearest, SkBlendMode::kSrc, SK_PMColor4fWHITE,
370 {0,0,200,200}, {0,0,200,200}, GrAA::kNo, GrQuadAAFlags::kNone,
371 SkCanvas::SrcRectConstraint::kStrict_SrcRectConstraint, SkMatrix::I(),
372 nullptr);
Chris Daltond7291ba2019-03-07 14:17:03 -0700373
374 return skiagm::DrawResult::kOk;
375}
376
377DEF_GM( return new SampleLocationsGM(GradType::kHW, kTopLeft_GrSurfaceOrigin); )
378DEF_GM( return new SampleLocationsGM(GradType::kHW, kBottomLeft_GrSurfaceOrigin); )
379DEF_GM( return new SampleLocationsGM(GradType::kSW, kTopLeft_GrSurfaceOrigin); )
380DEF_GM( return new SampleLocationsGM(GradType::kSW, kBottomLeft_GrSurfaceOrigin); )
381
382}