blob: 1d8a42a85405f2217eb33cac3dbce52446f4d22d [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
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/gpu/GrContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/private/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 {
94 void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor&,
Brian Salomonc241b582019-11-27 08:57:17 -050095 const CoordTransformRange&) final {}
Chris Dalton46983b72017-06-06 12:27:16 -060096
97 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) final {
98 const GrPipelineDynamicStateTestProcessor& mp =
99 args.fGP.cast<GrPipelineDynamicStateTestProcessor>();
100
101 GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
102 varyingHandler->emitAttributes(mp);
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500103 varyingHandler->addPassThroughAttribute(mp.inColor(), args.fOutputColor);
Chris Dalton46983b72017-06-06 12:27:16 -0600104
105 GrGLSLVertexBuilder* v = args.fVertBuilder;
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500106 v->codeAppendf("float2 vertex = %s;", mp.inVertex().name());
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400107 gpArgs->fPositionVar.set(kFloat2_GrSLType, "vertex");
Chris Dalton46983b72017-06-06 12:27:16 -0600108
Chris Dalton60283612018-02-14 13:38:14 -0700109 GrGLSLFPFragmentBuilder* f = args.fFragBuilder;
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400110 f->codeAppendf("%s = half4(1);", args.fOutputCoverage);
Chris Dalton46983b72017-06-06 12:27:16 -0600111 }
112};
113
114GrGLSLPrimitiveProcessor*
115GrPipelineDynamicStateTestProcessor::createGLSLInstance(const GrShaderCaps&) const {
116 return new GLSLPipelineDynamicStateTestProcessor;
117}
118
119class GrPipelineDynamicStateTestOp : public GrDrawOp {
120public:
121 DEFINE_OP_CLASS_ID
122
Robert Phillipsbe9aff22019-02-15 11:33:22 -0500123 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Chris Dalton916c4982018-08-15 00:53:25 -0600124 GrScissorTest scissorTest,
Robert Phillips88a32ef2018-06-07 11:05:56 -0400125 sk_sp<const GrBuffer> vbuff) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500126 GrOpMemoryPool* pool = context->priv().opMemoryPool();
Robert Phillipsc994a932018-06-19 13:09:54 -0400127
Chris Dalton916c4982018-08-15 00:53:25 -0600128 return pool->allocate<GrPipelineDynamicStateTestOp>(scissorTest, std::move(vbuff));
Robert Phillips88a32ef2018-06-07 11:05:56 -0400129 }
130
131private:
Robert Phillips7c525e62018-06-12 10:11:12 -0400132 friend class GrOpMemoryPool;
133
Chris Dalton916c4982018-08-15 00:53:25 -0600134 GrPipelineDynamicStateTestOp(GrScissorTest scissorTest, sk_sp<const GrBuffer> vbuff)
Brian Salomond818ebf2018-07-02 14:08:49 +0000135 : INHERITED(ClassID())
Chris Dalton916c4982018-08-15 00:53:25 -0600136 , fScissorTest(scissorTest)
Brian Salomond818ebf2018-07-02 14:08:49 +0000137 , fVertexBuffer(std::move(vbuff)) {
Chris Dalton46983b72017-06-06 12:27:16 -0600138 this->setBounds(SkRect::MakeIWH(kScreenSize, kScreenSize),
Greg Daniel5faf4742019-10-01 15:14:44 -0400139 HasAABloat::kNo, IsHairline::kNo);
Chris Dalton46983b72017-06-06 12:27:16 -0600140 }
141
Chris Dalton46983b72017-06-06 12:27:16 -0600142 const char* name() const override { return "GrPipelineDynamicStateTestOp"; }
143 FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
Chris Dalton6ce447a2019-06-23 18:07:38 -0600144 GrProcessorSet::Analysis finalize(const GrCaps&, const GrAppliedClip*,
145 bool hasMixedSampledCoverage, GrClampType) override {
Chris Dalton4b62aed2019-01-15 11:53:00 -0700146 return GrProcessorSet::EmptySetAnalysis();
Brian Salomonf86d37b2017-06-16 10:04:34 -0400147 }
Chris Dalton46983b72017-06-06 12:27:16 -0600148 void onPrepare(GrOpFlushState*) override {}
Robert Phillips901aff02019-10-08 12:32:56 -0400149 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
150 GrPipeline pipeline(fScissorTest, SkBlendMode::kSrc,
151 flushState->drawOpArgs().outputSwizzle());
Chris Dalton46983b72017-06-06 12:27:16 -0600152 SkSTArray<kNumMeshes, GrMesh> meshes;
153 for (int i = 0; i < kNumMeshes; ++i) {
Chris Dalton3809bab2017-06-13 10:55:06 -0600154 GrMesh& mesh = meshes.emplace_back(GrPrimitiveType::kTriangleStrip);
Chris Dalton46983b72017-06-06 12:27:16 -0600155 mesh.setNonIndexedNonInstanced(4);
Brian Salomon12d22642019-01-29 14:38:50 -0500156 mesh.setVertexData(fVertexBuffer, 4 * i);
Chris Dalton46983b72017-06-06 12:27:16 -0600157 }
Brian Salomon49348902018-06-26 09:12:38 -0400158 GrPipeline::DynamicStateArrays dynamicState;
159 dynamicState.fScissorRects = kDynamicScissors;
Robert Phillips901aff02019-10-08 12:32:56 -0400160
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500161 auto geomProc = GrPipelineDynamicStateTestProcessor::Make(flushState->allocator());
Robert Phillips901aff02019-10-08 12:32:56 -0400162
Chris Dalton5e8cdfd2019-11-11 15:23:30 -0700163 GrProgramInfo programInfo(flushState->proxy()->numSamples(),
164 flushState->proxy()->numStencilSamples(),
Robert Phillips933484f2019-11-26 09:38:55 -0500165 flushState->proxy()->backendFormat(),
166 flushState->view()->origin(),
Robert Phillips67a625e2019-11-15 15:37:07 -0500167 &pipeline,
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500168 geomProc,
Robert Phillips901aff02019-10-08 12:32:56 -0400169 nullptr,
Robert Phillipscea290f2019-11-06 11:21:03 -0500170 &dynamicState, 0, GrPrimitiveType::kTriangleStrip);
Robert Phillips901aff02019-10-08 12:32:56 -0400171
172 flushState->opsRenderPass()->draw(programInfo, meshes.begin(), 4,
173 SkRect::MakeIWH(kScreenSize, kScreenSize));
Chris Dalton46983b72017-06-06 12:27:16 -0600174 }
175
Chris Dalton916c4982018-08-15 00:53:25 -0600176 GrScissorTest fScissorTest;
Chris Dalton46983b72017-06-06 12:27:16 -0600177 const sk_sp<const GrBuffer> fVertexBuffer;
178
179 typedef GrDrawOp INHERITED;
180};
181
182DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrPipelineDynamicStateTest, reporter, ctxInfo) {
Robert Phillips88a32ef2018-06-07 11:05:56 -0400183 GrContext* context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500184 GrResourceProvider* rp = context->priv().resourceProvider();
Chris Dalton46983b72017-06-06 12:27:16 -0600185
Greg Daniele20fcad2020-01-08 11:52:34 -0500186 auto rtc = GrRenderTargetContext::Make(
187 context, GrColorType::kRGBA_8888, nullptr, SkBackingFit::kExact,
188 {kScreenSize, kScreenSize});
Chris Dalton46983b72017-06-06 12:27:16 -0600189 if (!rtc) {
190 ERRORF(reporter, "could not create render target context.");
191 return;
192 }
193
194 constexpr float d = (float) kScreenSize;
195 Vertex vdata[kNumMeshes * 4] = {
196 {0, 0, kMeshColors[0]},
197 {0, d, kMeshColors[0]},
198 {d, 0, kMeshColors[0]},
199 {d, d, kMeshColors[0]},
200
201 {0, 0, kMeshColors[1]},
202 {0, d, kMeshColors[1]},
203 {d, 0, kMeshColors[1]},
204 {d, d, kMeshColors[1]},
205
206 {0, 0, kMeshColors[2]},
207 {0, d, kMeshColors[2]},
208 {d, 0, kMeshColors[2]},
209 {d, d, kMeshColors[2]},
210
211 {0, 0, kMeshColors[3]},
212 {0, d, kMeshColors[3]},
213 {d, 0, kMeshColors[3]},
214 {d, d, kMeshColors[3]}
215 };
216
Brian Salomondbf70722019-02-07 11:31:24 -0500217 sk_sp<const GrBuffer> vbuff(rp->createBuffer(sizeof(vdata), GrGpuBufferType::kVertex,
218 kDynamic_GrAccessPattern, vdata));
Chris Dalton46983b72017-06-06 12:27:16 -0600219 if (!vbuff) {
220 ERRORF(reporter, "vbuff is null.");
221 return;
222 }
223
224 uint32_t resultPx[kScreenSize * kScreenSize];
225
Chris Dalton916c4982018-08-15 00:53:25 -0600226 for (GrScissorTest scissorTest : {GrScissorTest::kEnabled, GrScissorTest::kDisabled}) {
Brian Osman9a9baae2018-11-05 15:06:26 -0500227 rtc->clear(nullptr, SkPMColor4f::FromBytes_RGBA(0xbaaaaaad),
228 GrRenderTargetContext::CanClearFullscreen::kYes);
Chris Dalton46983b72017-06-06 12:27:16 -0600229 rtc->priv().testingOnly_addDrawOp(
Chris Dalton916c4982018-08-15 00:53:25 -0600230 GrPipelineDynamicStateTestOp::Make(context, scissorTest, vbuff));
Chris Dalton46983b72017-06-06 12:27:16 -0600231 rtc->readPixels(SkImageInfo::Make(kScreenSize, kScreenSize,
232 kRGBA_8888_SkColorType, kPremul_SkAlphaType),
Brian Salomon1d435302019-07-01 13:05:28 -0400233 resultPx, 4 * kScreenSize, {0, 0});
Chris Dalton46983b72017-06-06 12:27:16 -0600234 for (int y = 0; y < kScreenSize; ++y) {
235 for (int x = 0; x < kScreenSize; ++x) {
236 int expectedColorIdx;
Chris Dalton916c4982018-08-15 00:53:25 -0600237 if (GrScissorTest::kEnabled == scissorTest) {
Chris Dalton46983b72017-06-06 12:27:16 -0600238 expectedColorIdx = (x < kScreenSplitX ? 0 : 2) + (y < kScreenSplitY ? 0 : 1);
239 } else {
240 expectedColorIdx = kNumMeshes - 1;
241 }
242 uint32_t expected = kMeshColors[expectedColorIdx];
243 uint32_t actual = resultPx[y * kScreenSize + x];
244 if (expected != actual) {
245 ERRORF(reporter, "[scissor=%s] pixel (%i,%i): got 0x%x expected 0x%x",
Chris Dalton916c4982018-08-15 00:53:25 -0600246 GrScissorTest::kEnabled == scissorTest ? "enabled" : "disabled", x, y,
Chris Dalton46983b72017-06-06 12:27:16 -0600247 actual, expected);
248 return;
249 }
250 }
251 }
252 }
253}