blob: 485aa14aa611ff126bc0e473c22af3860f547d8a [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"
13#include "src/core/SkMakeUnique.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040014#include "src/gpu/GrColor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050015#include "src/gpu/GrContextPriv.h"
16#include "src/gpu/GrGeometryProcessor.h"
Brian Salomonf2ebdd92019-09-30 12:15:30 -040017#include "src/gpu/GrImageInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050018#include "src/gpu/GrMemoryPool.h"
19#include "src/gpu/GrOpFlushState.h"
Greg Daniel2d41d0d2019-08-26 11:08:51 -040020#include "src/gpu/GrOpsRenderPass.h"
Robert Phillips901aff02019-10-08 12:32:56 -040021#include "src/gpu/GrProgramInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050022#include "src/gpu/GrRecordingContextPriv.h"
23#include "src/gpu/GrRenderTargetContext.h"
24#include "src/gpu/GrRenderTargetContextPriv.h"
25#include "src/gpu/GrResourceProvider.h"
26#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
27#include "src/gpu/glsl/GrGLSLGeometryProcessor.h"
28#include "src/gpu/glsl/GrGLSLVarying.h"
29#include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
Chris Dalton46983b72017-06-06 12:27:16 -060030
31/**
32 * This is a GPU-backend specific test for dynamic pipeline state. It draws boxes using dynamic
33 * scissor rectangles then reads back the result to verify a successful test.
34 */
35
Chris Dalton46983b72017-06-06 12:27:16 -060036static constexpr int kScreenSize = 6;
37static constexpr int kNumMeshes = 4;
38static constexpr int kScreenSplitX = kScreenSize/2;
39static constexpr int kScreenSplitY = kScreenSize/2;
40
Brian Salomon49348902018-06-26 09:12:38 -040041static const SkIRect kDynamicScissors[kNumMeshes] = {
42 SkIRect::MakeLTRB(0, 0, kScreenSplitX, kScreenSplitY),
43 SkIRect::MakeLTRB(0, kScreenSplitY, kScreenSplitX, kScreenSize),
44 SkIRect::MakeLTRB(kScreenSplitX, 0, kScreenSize, kScreenSplitY),
45 SkIRect::MakeLTRB(kScreenSplitX, kScreenSplitY, kScreenSize, kScreenSize),
Chris Dalton46983b72017-06-06 12:27:16 -060046};
47
48static const GrColor kMeshColors[kNumMeshes] {
49 GrColorPackRGBA(255, 0, 0, 255),
50 GrColorPackRGBA(0, 255, 0, 255),
51 GrColorPackRGBA(0, 0, 255, 255),
52 GrColorPackRGBA(0, 0, 0, 255)
53};
54
55struct Vertex {
56 float fX;
57 float fY;
58 GrColor fColor;
59};
60
61class GrPipelineDynamicStateTestProcessor : public GrGeometryProcessor {
62public:
63 GrPipelineDynamicStateTestProcessor()
Brian Salomon92be2f72018-06-19 14:33:47 -040064 : INHERITED(kGrPipelineDynamicStateTestProcessor_ClassID) {
Brian Osmanf04fb3c2018-11-12 15:34:00 -050065 this->setVertexAttributes(kAttributes, SK_ARRAY_COUNT(kAttributes));
Brian Salomon92be2f72018-06-19 14:33:47 -040066 }
Chris Dalton46983b72017-06-06 12:27:16 -060067
68 const char* name() const override { return "GrPipelineDynamicStateTest Processor"; }
69
70 void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder*) const final {}
71
72 GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const final;
73
Brian Osmanf04fb3c2018-11-12 15:34:00 -050074 const Attribute& inVertex() const { return kAttributes[0]; }
75 const Attribute& inColor() const { return kAttributes[1]; }
Brian Salomon92be2f72018-06-19 14:33:47 -040076
Brian Osmanf04fb3c2018-11-12 15:34:00 -050077private:
78 static constexpr Attribute kAttributes[] = {
79 {"vertex", kFloat2_GrVertexAttribType, kHalf2_GrSLType},
80 {"color", kUByte4_norm_GrVertexAttribType, kHalf4_GrSLType},
81 };
Chris Dalton46983b72017-06-06 12:27:16 -060082
83 friend class GLSLPipelineDynamicStateTestProcessor;
84 typedef GrGeometryProcessor INHERITED;
85};
Brian Osmanf04fb3c2018-11-12 15:34:00 -050086constexpr GrPrimitiveProcessor::Attribute GrPipelineDynamicStateTestProcessor::kAttributes[];
Chris Dalton46983b72017-06-06 12:27:16 -060087
88class GLSLPipelineDynamicStateTestProcessor : public GrGLSLGeometryProcessor {
89 void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor&,
90 FPCoordTransformIter&& transformIter) final {}
91
92 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) final {
93 const GrPipelineDynamicStateTestProcessor& mp =
94 args.fGP.cast<GrPipelineDynamicStateTestProcessor>();
95
96 GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
97 varyingHandler->emitAttributes(mp);
Brian Osmanf04fb3c2018-11-12 15:34:00 -050098 varyingHandler->addPassThroughAttribute(mp.inColor(), args.fOutputColor);
Chris Dalton46983b72017-06-06 12:27:16 -060099
100 GrGLSLVertexBuilder* v = args.fVertBuilder;
Brian Osmanf04fb3c2018-11-12 15:34:00 -0500101 v->codeAppendf("float2 vertex = %s;", mp.inVertex().name());
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400102 gpArgs->fPositionVar.set(kFloat2_GrSLType, "vertex");
Chris Dalton46983b72017-06-06 12:27:16 -0600103
Chris Dalton60283612018-02-14 13:38:14 -0700104 GrGLSLFPFragmentBuilder* f = args.fFragBuilder;
Ethan Nicholasf7b88202017-09-18 14:10:39 -0400105 f->codeAppendf("%s = half4(1);", args.fOutputCoverage);
Chris Dalton46983b72017-06-06 12:27:16 -0600106 }
107};
108
109GrGLSLPrimitiveProcessor*
110GrPipelineDynamicStateTestProcessor::createGLSLInstance(const GrShaderCaps&) const {
111 return new GLSLPipelineDynamicStateTestProcessor;
112}
113
114class GrPipelineDynamicStateTestOp : public GrDrawOp {
115public:
116 DEFINE_OP_CLASS_ID
117
Robert Phillipsbe9aff22019-02-15 11:33:22 -0500118 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Chris Dalton916c4982018-08-15 00:53:25 -0600119 GrScissorTest scissorTest,
Robert Phillips88a32ef2018-06-07 11:05:56 -0400120 sk_sp<const GrBuffer> vbuff) {
Robert Phillips9da87e02019-02-04 13:26:26 -0500121 GrOpMemoryPool* pool = context->priv().opMemoryPool();
Robert Phillipsc994a932018-06-19 13:09:54 -0400122
Chris Dalton916c4982018-08-15 00:53:25 -0600123 return pool->allocate<GrPipelineDynamicStateTestOp>(scissorTest, std::move(vbuff));
Robert Phillips88a32ef2018-06-07 11:05:56 -0400124 }
125
126private:
Robert Phillips7c525e62018-06-12 10:11:12 -0400127 friend class GrOpMemoryPool;
128
Chris Dalton916c4982018-08-15 00:53:25 -0600129 GrPipelineDynamicStateTestOp(GrScissorTest scissorTest, sk_sp<const GrBuffer> vbuff)
Brian Salomond818ebf2018-07-02 14:08:49 +0000130 : INHERITED(ClassID())
Chris Dalton916c4982018-08-15 00:53:25 -0600131 , fScissorTest(scissorTest)
Brian Salomond818ebf2018-07-02 14:08:49 +0000132 , fVertexBuffer(std::move(vbuff)) {
Chris Dalton46983b72017-06-06 12:27:16 -0600133 this->setBounds(SkRect::MakeIWH(kScreenSize, kScreenSize),
Greg Daniel5faf4742019-10-01 15:14:44 -0400134 HasAABloat::kNo, IsHairline::kNo);
Chris Dalton46983b72017-06-06 12:27:16 -0600135 }
136
Chris Dalton46983b72017-06-06 12:27:16 -0600137 const char* name() const override { return "GrPipelineDynamicStateTestOp"; }
138 FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
Chris Dalton6ce447a2019-06-23 18:07:38 -0600139 GrProcessorSet::Analysis finalize(const GrCaps&, const GrAppliedClip*,
140 bool hasMixedSampledCoverage, GrClampType) override {
Chris Dalton4b62aed2019-01-15 11:53:00 -0700141 return GrProcessorSet::EmptySetAnalysis();
Brian Salomonf86d37b2017-06-16 10:04:34 -0400142 }
Chris Dalton46983b72017-06-06 12:27:16 -0600143 void onPrepare(GrOpFlushState*) override {}
Robert Phillips901aff02019-10-08 12:32:56 -0400144 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
145 GrPipeline pipeline(fScissorTest, SkBlendMode::kSrc,
146 flushState->drawOpArgs().outputSwizzle());
Chris Dalton46983b72017-06-06 12:27:16 -0600147 SkSTArray<kNumMeshes, GrMesh> meshes;
148 for (int i = 0; i < kNumMeshes; ++i) {
Chris Dalton3809bab2017-06-13 10:55:06 -0600149 GrMesh& mesh = meshes.emplace_back(GrPrimitiveType::kTriangleStrip);
Chris Dalton46983b72017-06-06 12:27:16 -0600150 mesh.setNonIndexedNonInstanced(4);
Brian Salomon12d22642019-01-29 14:38:50 -0500151 mesh.setVertexData(fVertexBuffer, 4 * i);
Chris Dalton46983b72017-06-06 12:27:16 -0600152 }
Brian Salomon49348902018-06-26 09:12:38 -0400153 GrPipeline::DynamicStateArrays dynamicState;
154 dynamicState.fScissorRects = kDynamicScissors;
Robert Phillips901aff02019-10-08 12:32:56 -0400155
156 GrPipelineDynamicStateTestProcessor primProc;
157
158 GrProgramInfo programInfo(flushState->drawOpArgs().numSamples(),
159 flushState->drawOpArgs().origin(),
160 pipeline,
161 primProc,
162 nullptr,
Robert Phillips2d8a95e2019-10-10 12:50:22 -0400163 &dynamicState, 0);
Robert Phillips901aff02019-10-08 12:32:56 -0400164
165 flushState->opsRenderPass()->draw(programInfo, meshes.begin(), 4,
166 SkRect::MakeIWH(kScreenSize, kScreenSize));
Chris Dalton46983b72017-06-06 12:27:16 -0600167 }
168
Chris Dalton916c4982018-08-15 00:53:25 -0600169 GrScissorTest fScissorTest;
Chris Dalton46983b72017-06-06 12:27:16 -0600170 const sk_sp<const GrBuffer> fVertexBuffer;
171
172 typedef GrDrawOp INHERITED;
173};
174
175DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrPipelineDynamicStateTest, reporter, ctxInfo) {
Robert Phillips88a32ef2018-06-07 11:05:56 -0400176 GrContext* context = ctxInfo.grContext();
Robert Phillips9da87e02019-02-04 13:26:26 -0500177 GrResourceProvider* rp = context->priv().resourceProvider();
Chris Dalton46983b72017-06-06 12:27:16 -0600178
Brian Salomonbf6b9792019-08-21 09:38:10 -0400179 auto rtc = context->priv().makeDeferredRenderTargetContext(
180 SkBackingFit::kExact, kScreenSize, kScreenSize, GrColorType::kRGBA_8888, nullptr);
Chris Dalton46983b72017-06-06 12:27:16 -0600181 if (!rtc) {
182 ERRORF(reporter, "could not create render target context.");
183 return;
184 }
185
186 constexpr float d = (float) kScreenSize;
187 Vertex vdata[kNumMeshes * 4] = {
188 {0, 0, kMeshColors[0]},
189 {0, d, kMeshColors[0]},
190 {d, 0, kMeshColors[0]},
191 {d, d, kMeshColors[0]},
192
193 {0, 0, kMeshColors[1]},
194 {0, d, kMeshColors[1]},
195 {d, 0, kMeshColors[1]},
196 {d, d, kMeshColors[1]},
197
198 {0, 0, kMeshColors[2]},
199 {0, d, kMeshColors[2]},
200 {d, 0, kMeshColors[2]},
201 {d, d, kMeshColors[2]},
202
203 {0, 0, kMeshColors[3]},
204 {0, d, kMeshColors[3]},
205 {d, 0, kMeshColors[3]},
206 {d, d, kMeshColors[3]}
207 };
208
Brian Salomondbf70722019-02-07 11:31:24 -0500209 sk_sp<const GrBuffer> vbuff(rp->createBuffer(sizeof(vdata), GrGpuBufferType::kVertex,
210 kDynamic_GrAccessPattern, vdata));
Chris Dalton46983b72017-06-06 12:27:16 -0600211 if (!vbuff) {
212 ERRORF(reporter, "vbuff is null.");
213 return;
214 }
215
216 uint32_t resultPx[kScreenSize * kScreenSize];
217
Chris Dalton916c4982018-08-15 00:53:25 -0600218 for (GrScissorTest scissorTest : {GrScissorTest::kEnabled, GrScissorTest::kDisabled}) {
Brian Osman9a9baae2018-11-05 15:06:26 -0500219 rtc->clear(nullptr, SkPMColor4f::FromBytes_RGBA(0xbaaaaaad),
220 GrRenderTargetContext::CanClearFullscreen::kYes);
Chris Dalton46983b72017-06-06 12:27:16 -0600221 rtc->priv().testingOnly_addDrawOp(
Chris Dalton916c4982018-08-15 00:53:25 -0600222 GrPipelineDynamicStateTestOp::Make(context, scissorTest, vbuff));
Chris Dalton46983b72017-06-06 12:27:16 -0600223 rtc->readPixels(SkImageInfo::Make(kScreenSize, kScreenSize,
224 kRGBA_8888_SkColorType, kPremul_SkAlphaType),
Brian Salomon1d435302019-07-01 13:05:28 -0400225 resultPx, 4 * kScreenSize, {0, 0});
Chris Dalton46983b72017-06-06 12:27:16 -0600226 for (int y = 0; y < kScreenSize; ++y) {
227 for (int x = 0; x < kScreenSize; ++x) {
228 int expectedColorIdx;
Chris Dalton916c4982018-08-15 00:53:25 -0600229 if (GrScissorTest::kEnabled == scissorTest) {
Chris Dalton46983b72017-06-06 12:27:16 -0600230 expectedColorIdx = (x < kScreenSplitX ? 0 : 2) + (y < kScreenSplitY ? 0 : 1);
231 } else {
232 expectedColorIdx = kNumMeshes - 1;
233 }
234 uint32_t expected = kMeshColors[expectedColorIdx];
235 uint32_t actual = resultPx[y * kScreenSize + x];
236 if (expected != actual) {
237 ERRORF(reporter, "[scissor=%s] pixel (%i,%i): got 0x%x expected 0x%x",
Chris Dalton916c4982018-08-15 00:53:25 -0600238 GrScissorTest::kEnabled == scissorTest ? "enabled" : "disabled", x, y,
Chris Dalton46983b72017-06-06 12:27:16 -0600239 actual, expected);
240 return;
241 }
242 }
243 }
244 }
245}