blob: 9aecbcfdb9093b501f92e9a178d5f2e8ace30ee4 [file] [log] [blame]
Chris Dalton46983b72017-06-06 12:27:16 -06001/*
2 * Copyright 2017 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 "include/core/SkTypes.h"
9#include "tests/Test.h"
Chris Dalton46983b72017-06-06 12:27:16 -060010
Robert Phillips6d344c32020-07-06 10:56:46 -040011#include "include/gpu/GrDirectContext.h"
Robert Phillipsb7bfbc22020-07-01 12:55:01 -040012#include "include/gpu/GrRecordingContext.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040013#include "src/gpu/GrColor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "src/gpu/GrContextPriv.h"
15#include "src/gpu/GrGeometryProcessor.h"
Brian Salomonf2ebdd92019-09-30 12:15:30 -040016#include "src/gpu/GrImageInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050017#include "src/gpu/GrMemoryPool.h"
18#include "src/gpu/GrOpFlushState.h"
Greg Daniel2d41d0d2019-08-26 11:08:51 -040019#include "src/gpu/GrOpsRenderPass.h"
Robert Phillips901aff02019-10-08 12:32:56 -040020#include "src/gpu/GrProgramInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "src/gpu/GrRecordingContextPriv.h"
22#include "src/gpu/GrRenderTargetContext.h"
23#include "src/gpu/GrRenderTargetContextPriv.h"
24#include "src/gpu/GrResourceProvider.h"
25#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
26#include "src/gpu/glsl/GrGLSLGeometryProcessor.h"
27#include "src/gpu/glsl/GrGLSLVarying.h"
28#include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
Chris Dalton46983b72017-06-06 12:27:16 -060029
30/**
31 * This is a GPU-backend specific test for dynamic pipeline state. It draws boxes using dynamic
32 * scissor rectangles then reads back the result to verify a successful test.
33 */
34
Chris Dalton46983b72017-06-06 12:27:16 -060035static constexpr int kScreenSize = 6;
36static constexpr int kNumMeshes = 4;
37static constexpr int kScreenSplitX = kScreenSize/2;
38static constexpr int kScreenSplitY = kScreenSize/2;
39
Brian Salomon49348902018-06-26 09:12:38 -040040static const SkIRect kDynamicScissors[kNumMeshes] = {
41 SkIRect::MakeLTRB(0, 0, kScreenSplitX, kScreenSplitY),
42 SkIRect::MakeLTRB(0, kScreenSplitY, kScreenSplitX, kScreenSize),
43 SkIRect::MakeLTRB(kScreenSplitX, 0, kScreenSize, kScreenSplitY),
44 SkIRect::MakeLTRB(kScreenSplitX, kScreenSplitY, kScreenSize, kScreenSize),
Chris Dalton46983b72017-06-06 12:27:16 -060045};
46
47static const GrColor kMeshColors[kNumMeshes] {
48 GrColorPackRGBA(255, 0, 0, 255),
49 GrColorPackRGBA(0, 255, 0, 255),
50 GrColorPackRGBA(0, 0, 255, 255),
51 GrColorPackRGBA(0, 0, 0, 255)
52};
53
54struct Vertex {
55 float fX;
56 float fY;
57 GrColor fColor;
58};
59
60class GrPipelineDynamicStateTestProcessor : public GrGeometryProcessor {
61public:
Robert Phillips7cd0bfe2019-11-20 16:08:10 -050062 static GrGeometryProcessor* Make(SkArenaAlloc* arena) {
63 return arena->make<GrPipelineDynamicStateTestProcessor>();
Brian Salomon92be2f72018-06-19 14:33:47 -040064 }
Chris Dalton46983b72017-06-06 12:27:16 -060065
66 const char* name() const override { return "GrPipelineDynamicStateTest Processor"; }
67
68 void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const final {}
69
70 GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const final;
71
Brian Osmanf04fb3c2018-11-12 15:34:00 -050072 const Attribute& inVertex() const { return kAttributes[0]; }
73 const Attribute& inColor() const { return kAttributes[1]; }
Brian Salomon92be2f72018-06-19 14:33:47 -040074
Brian Osmanf04fb3c2018-11-12 15:34:00 -050075private:
Robert Phillips7cd0bfe2019-11-20 16:08:10 -050076 friend class ::SkArenaAlloc; // for access to ctor
77
78 GrPipelineDynamicStateTestProcessor()
79 : INHERITED(kGrPipelineDynamicStateTestProcessor_ClassID) {
80 this->setVertexAttributes(kAttributes, SK_ARRAY_COUNT(kAttributes));
81 }
82
Brian Osmanf04fb3c2018-11-12 15:34:00 -050083 static constexpr Attribute kAttributes[] = {
84 {"vertex", kFloat2_GrVertexAttribType, kHalf2_GrSLType},
85 {"color", kUByte4_norm_GrVertexAttribType, kHalf4_GrSLType},
86 };
Chris Dalton46983b72017-06-06 12:27:16 -060087
88 friend class GLSLPipelineDynamicStateTestProcessor;
89 typedef GrGeometryProcessor INHERITED;
90};
Brian Osmanf04fb3c2018-11-12 15:34:00 -050091constexpr GrPrimitiveProcessor::Attribute GrPipelineDynamicStateTestProcessor::kAttributes[];
Chris Dalton46983b72017-06-06 12:27:16 -060092
93class GLSLPipelineDynamicStateTestProcessor : public GrGLSLGeometryProcessor {
Brian Osman609f1592020-07-01 15:14:39 -040094 void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor&) final {}
Chris Dalton46983b72017-06-06 12:27:16 -060095
96 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) final {
97 const GrPipelineDynamicStateTestProcessor& mp =
98 args.fGP.cast<GrPipelineDynamicStateTestProcessor>();
99
100 GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
101 varyingHandler->emitAttributes(mp);
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500102 varyingHandler->addPassThroughAttribute(mp.inColor(), args.fOutputColor);
Chris Dalton46983b72017-06-06 12:27:16 -0600103
104 GrGLSLVertexBuilder* v = args.fVertBuilder;
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500105 v->codeAppendf("float2 vertex = %s;", mp.inVertex().name());
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400106 gpArgs->fPositionVar.set(kFloat2_GrSLType, "vertex");
Chris Dalton46983b72017-06-06 12:27:16 -0600107
Chris Dalton60283612018-02-14 13:38:14 -0700108 GrGLSLFPFragmentBuilder* f = args.fFragBuilder;
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400109 f->codeAppendf("%s = half4(1);", args.fOutputCoverage);
Chris Dalton46983b72017-06-06 12:27:16 -0600110 }
111};
112
113GrGLSLPrimitiveProcessor*
114GrPipelineDynamicStateTestProcessor::createGLSLInstance(const GrShaderCaps&) const {
115 return new GLSLPipelineDynamicStateTestProcessor;
116}
117
118class GrPipelineDynamicStateTestOp : public GrDrawOp {
119public:
120 DEFINE_OP_CLASS_ID
121
Robert Phillipsbe9aff22019-02-15 11:33:22 -0500122 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Chris Dalton916c4982018-08-15 00:53:25 -0600123 GrScissorTest scissorTest,
Robert Phillips88a32ef2018-06-07 11:05:56 -0400124 sk_sp<const GrBuffer> vbuff) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500125 GrOpMemoryPool* pool = context->priv().opMemoryPool();
Robert Phillipsc994a932018-06-19 13:09:54 -0400126
Chris Dalton916c4982018-08-15 00:53:25 -0600127 return pool->allocate<GrPipelineDynamicStateTestOp>(scissorTest, std::move(vbuff));
Robert Phillips88a32ef2018-06-07 11:05:56 -0400128 }
129
130private:
Robert Phillips7c525e62018-06-12 10:11:12 -0400131 friend class GrOpMemoryPool;
132
Chris Dalton916c4982018-08-15 00:53:25 -0600133 GrPipelineDynamicStateTestOp(GrScissorTest scissorTest, sk_sp<const GrBuffer> vbuff)
Robert Phillips709e2402020-03-23 18:29:16 +0000134 : INHERITED(ClassID())
135 , fScissorTest(scissorTest)
136 , fVertexBuffer(std::move(vbuff)) {
Chris Dalton46983b72017-06-06 12:27:16 -0600137 this->setBounds(SkRect::MakeIWH(kScreenSize, kScreenSize),
Greg Daniel5faf4742019-10-01 15:14:44 -0400138 HasAABloat::kNo, IsHairline::kNo);
Chris Dalton46983b72017-06-06 12:27:16 -0600139 }
140
Chris Dalton46983b72017-06-06 12:27:16 -0600141 const char* name() const override { return "GrPipelineDynamicStateTestOp"; }
142 FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
Robert Phillips709e2402020-03-23 18:29:16 +0000143 GrProcessorSet::Analysis finalize(const GrCaps&, const GrAppliedClip*,
144 bool hasMixedSampledCoverage, GrClampType) override {
145 return GrProcessorSet::EmptySetAnalysis();
Brian Salomonf86d37b2017-06-16 10:04:34 -0400146 }
Robert Phillips709e2402020-03-23 18:29:16 +0000147 void onPrePrepare(GrRecordingContext*,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400148 const GrSurfaceProxyView* writeView,
Robert Phillips709e2402020-03-23 18:29:16 +0000149 GrAppliedClip*,
150 const GrXferProcessor::DstProxyView&) override {}
Chris Dalton46983b72017-06-06 12:27:16 -0600151 void onPrepare(GrOpFlushState*) override {}
Robert Phillips901aff02019-10-08 12:32:56 -0400152 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
Robert Phillips709e2402020-03-23 18:29:16 +0000153 GrPipeline pipeline(fScissorTest, SkBlendMode::kSrc,
Brian Salomon982f5462020-03-30 12:52:33 -0400154 flushState->drawOpArgs().writeSwizzle());
Chris Daltoneb694b72020-03-16 09:25:50 -0600155 SkSTArray<kNumMeshes, GrSimpleMesh> meshes;
Chris Dalton46983b72017-06-06 12:27:16 -0600156 for (int i = 0; i < kNumMeshes; ++i) {
Chris Daltoneb694b72020-03-16 09:25:50 -0600157 GrSimpleMesh& mesh = meshes.push_back();
Chris Dalton37c7bdd2020-03-13 09:21:12 -0600158 mesh.set(fVertexBuffer, 4, 4 * i);
Chris Dalton46983b72017-06-06 12:27:16 -0600159 }
Robert Phillips901aff02019-10-08 12:32:56 -0400160
Robert Phillips709e2402020-03-23 18:29:16 +0000161 auto geomProc = GrPipelineDynamicStateTestProcessor::Make(flushState->allocator());
162
163 GrProgramInfo programInfo(flushState->proxy()->numSamples(),
164 flushState->proxy()->numStencilSamples(),
165 flushState->proxy()->backendFormat(),
Brian Salomon8afde5f2020-04-01 16:22:00 -0400166 flushState->writeView()->origin(),
Robert Phillips709e2402020-03-23 18:29:16 +0000167 &pipeline,
168 geomProc,
169 GrPrimitiveType::kTriangleStrip);
170
171 flushState->bindPipeline(programInfo, SkRect::MakeIWH(kScreenSize, kScreenSize));
172 for (int i = 0; i < 4; ++i) {
Chris Dalton765ed362020-03-16 17:34:44 -0600173 if (fScissorTest == GrScissorTest::kEnabled) {
174 flushState->setScissorRect(kDynamicScissors[i]);
175 }
176 flushState->drawMesh(meshes[i]);
177 }
Chris Dalton46983b72017-06-06 12:27:16 -0600178 }
179
Chris Dalton916c4982018-08-15 00:53:25 -0600180 GrScissorTest fScissorTest;
Chris Dalton46983b72017-06-06 12:27:16 -0600181 const sk_sp<const GrBuffer> fVertexBuffer;
182
183 typedef GrDrawOp INHERITED;
184};
185
186DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrPipelineDynamicStateTest, reporter, ctxInfo) {
Robert Phillips6d344c32020-07-06 10:56:46 -0400187 auto context = ctxInfo.directContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500188 GrResourceProvider* rp = context->priv().resourceProvider();
Chris Dalton46983b72017-06-06 12:27:16 -0600189
Greg Daniele20fcad2020-01-08 11:52:34 -0500190 auto rtc = GrRenderTargetContext::Make(
191 context, GrColorType::kRGBA_8888, nullptr, SkBackingFit::kExact,
192 {kScreenSize, kScreenSize});
Chris Dalton46983b72017-06-06 12:27:16 -0600193 if (!rtc) {
194 ERRORF(reporter, "could not create render target context.");
195 return;
196 }
197
198 constexpr float d = (float) kScreenSize;
199 Vertex vdata[kNumMeshes * 4] = {
200 {0, 0, kMeshColors[0]},
201 {0, d, kMeshColors[0]},
202 {d, 0, kMeshColors[0]},
203 {d, d, kMeshColors[0]},
204
205 {0, 0, kMeshColors[1]},
206 {0, d, kMeshColors[1]},
207 {d, 0, kMeshColors[1]},
208 {d, d, kMeshColors[1]},
209
210 {0, 0, kMeshColors[2]},
211 {0, d, kMeshColors[2]},
212 {d, 0, kMeshColors[2]},
213 {d, d, kMeshColors[2]},
214
215 {0, 0, kMeshColors[3]},
216 {0, d, kMeshColors[3]},
217 {d, 0, kMeshColors[3]},
218 {d, d, kMeshColors[3]}
219 };
220
Brian Salomondbf70722019-02-07 11:31:24 -0500221 sk_sp<const GrBuffer> vbuff(rp->createBuffer(sizeof(vdata), GrGpuBufferType::kVertex,
222 kDynamic_GrAccessPattern, vdata));
Chris Dalton46983b72017-06-06 12:27:16 -0600223 if (!vbuff) {
224 ERRORF(reporter, "vbuff is null.");
225 return;
226 }
227
228 uint32_t resultPx[kScreenSize * kScreenSize];
229
Chris Dalton916c4982018-08-15 00:53:25 -0600230 for (GrScissorTest scissorTest : {GrScissorTest::kEnabled, GrScissorTest::kDisabled}) {
Michael Ludwig81d41722020-05-26 16:57:38 -0400231 rtc->clear(SkPMColor4f::FromBytes_RGBA(0xbaaaaaad));
Chris Dalton46983b72017-06-06 12:27:16 -0600232 rtc->priv().testingOnly_addDrawOp(
Chris Dalton916c4982018-08-15 00:53:25 -0600233 GrPipelineDynamicStateTestOp::Make(context, scissorTest, vbuff));
Chris Dalton46983b72017-06-06 12:27:16 -0600234 rtc->readPixels(SkImageInfo::Make(kScreenSize, kScreenSize,
235 kRGBA_8888_SkColorType, kPremul_SkAlphaType),
Brian Salomon1d435302019-07-01 13:05:28 -0400236 resultPx, 4 * kScreenSize, {0, 0});
Chris Dalton46983b72017-06-06 12:27:16 -0600237 for (int y = 0; y < kScreenSize; ++y) {
238 for (int x = 0; x < kScreenSize; ++x) {
239 int expectedColorIdx;
Chris Dalton916c4982018-08-15 00:53:25 -0600240 if (GrScissorTest::kEnabled == scissorTest) {
Chris Dalton46983b72017-06-06 12:27:16 -0600241 expectedColorIdx = (x < kScreenSplitX ? 0 : 2) + (y < kScreenSplitY ? 0 : 1);
242 } else {
243 expectedColorIdx = kNumMeshes - 1;
244 }
245 uint32_t expected = kMeshColors[expectedColorIdx];
246 uint32_t actual = resultPx[y * kScreenSize + x];
247 if (expected != actual) {
248 ERRORF(reporter, "[scissor=%s] pixel (%i,%i): got 0x%x expected 0x%x",
Chris Dalton916c4982018-08-15 00:53:25 -0600249 GrScissorTest::kEnabled == scissorTest ? "enabled" : "disabled", x, y,
Chris Dalton46983b72017-06-06 12:27:16 -0600250 actual, expected);
251 return;
252 }
253 }
254 }
255 }
256}