Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 1 | /* |
| 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 Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "include/core/SkTypes.h" |
| 9 | #include "tests/Test.h" |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 10 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 11 | #include "include/gpu/GrContext.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 12 | #include "include/private/GrRecordingContext.h" |
| 13 | #include "src/core/SkMakeUnique.h" |
Greg Daniel | f91aeb2 | 2019-06-18 09:58:02 -0400 | [diff] [blame] | 14 | #include "src/gpu/GrColor.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 15 | #include "src/gpu/GrContextPriv.h" |
| 16 | #include "src/gpu/GrGeometryProcessor.h" |
| 17 | #include "src/gpu/GrGpuCommandBuffer.h" |
| 18 | #include "src/gpu/GrMemoryPool.h" |
| 19 | #include "src/gpu/GrOpFlushState.h" |
| 20 | #include "src/gpu/GrRecordingContextPriv.h" |
| 21 | #include "src/gpu/GrRenderTargetContext.h" |
| 22 | #include "src/gpu/GrRenderTargetContextPriv.h" |
| 23 | #include "src/gpu/GrResourceProvider.h" |
| 24 | #include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h" |
| 25 | #include "src/gpu/glsl/GrGLSLGeometryProcessor.h" |
| 26 | #include "src/gpu/glsl/GrGLSLVarying.h" |
| 27 | #include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h" |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 28 | |
| 29 | /** |
| 30 | * This is a GPU-backend specific test for dynamic pipeline state. It draws boxes using dynamic |
| 31 | * scissor rectangles then reads back the result to verify a successful test. |
| 32 | */ |
| 33 | |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 34 | static constexpr int kScreenSize = 6; |
| 35 | static constexpr int kNumMeshes = 4; |
| 36 | static constexpr int kScreenSplitX = kScreenSize/2; |
| 37 | static constexpr int kScreenSplitY = kScreenSize/2; |
| 38 | |
Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 39 | static const SkIRect kDynamicScissors[kNumMeshes] = { |
| 40 | SkIRect::MakeLTRB(0, 0, kScreenSplitX, kScreenSplitY), |
| 41 | SkIRect::MakeLTRB(0, kScreenSplitY, kScreenSplitX, kScreenSize), |
| 42 | SkIRect::MakeLTRB(kScreenSplitX, 0, kScreenSize, kScreenSplitY), |
| 43 | SkIRect::MakeLTRB(kScreenSplitX, kScreenSplitY, kScreenSize, kScreenSize), |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | static const GrColor kMeshColors[kNumMeshes] { |
| 47 | GrColorPackRGBA(255, 0, 0, 255), |
| 48 | GrColorPackRGBA(0, 255, 0, 255), |
| 49 | GrColorPackRGBA(0, 0, 255, 255), |
| 50 | GrColorPackRGBA(0, 0, 0, 255) |
| 51 | }; |
| 52 | |
| 53 | struct Vertex { |
| 54 | float fX; |
| 55 | float fY; |
| 56 | GrColor fColor; |
| 57 | }; |
| 58 | |
| 59 | class GrPipelineDynamicStateTestProcessor : public GrGeometryProcessor { |
| 60 | public: |
| 61 | GrPipelineDynamicStateTestProcessor() |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 62 | : INHERITED(kGrPipelineDynamicStateTestProcessor_ClassID) { |
Brian Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 63 | this->setVertexAttributes(kAttributes, SK_ARRAY_COUNT(kAttributes)); |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 64 | } |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 65 | |
| 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 Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 72 | const Attribute& inVertex() const { return kAttributes[0]; } |
| 73 | const Attribute& inColor() const { return kAttributes[1]; } |
Brian Salomon | 92be2f7 | 2018-06-19 14:33:47 -0400 | [diff] [blame] | 74 | |
Brian Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 75 | private: |
| 76 | static constexpr Attribute kAttributes[] = { |
| 77 | {"vertex", kFloat2_GrVertexAttribType, kHalf2_GrSLType}, |
| 78 | {"color", kUByte4_norm_GrVertexAttribType, kHalf4_GrSLType}, |
| 79 | }; |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 80 | |
| 81 | friend class GLSLPipelineDynamicStateTestProcessor; |
| 82 | typedef GrGeometryProcessor INHERITED; |
| 83 | }; |
Brian Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 84 | constexpr GrPrimitiveProcessor::Attribute GrPipelineDynamicStateTestProcessor::kAttributes[]; |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 85 | |
| 86 | class GLSLPipelineDynamicStateTestProcessor : public GrGLSLGeometryProcessor { |
| 87 | void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor&, |
| 88 | FPCoordTransformIter&& transformIter) final {} |
| 89 | |
| 90 | void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) final { |
| 91 | const GrPipelineDynamicStateTestProcessor& mp = |
| 92 | args.fGP.cast<GrPipelineDynamicStateTestProcessor>(); |
| 93 | |
| 94 | GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler; |
| 95 | varyingHandler->emitAttributes(mp); |
Brian Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 96 | varyingHandler->addPassThroughAttribute(mp.inColor(), args.fOutputColor); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 97 | |
| 98 | GrGLSLVertexBuilder* v = args.fVertBuilder; |
Brian Osman | f04fb3c | 2018-11-12 15:34:00 -0500 | [diff] [blame] | 99 | v->codeAppendf("float2 vertex = %s;", mp.inVertex().name()); |
Ethan Nicholas | 8aa4569 | 2017-09-20 11:24:15 -0400 | [diff] [blame] | 100 | gpArgs->fPositionVar.set(kFloat2_GrSLType, "vertex"); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 101 | |
Chris Dalton | 6028361 | 2018-02-14 13:38:14 -0700 | [diff] [blame] | 102 | GrGLSLFPFragmentBuilder* f = args.fFragBuilder; |
Ethan Nicholas | f7b8820 | 2017-09-18 14:10:39 -0400 | [diff] [blame] | 103 | f->codeAppendf("%s = half4(1);", args.fOutputCoverage); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 104 | } |
| 105 | }; |
| 106 | |
| 107 | GrGLSLPrimitiveProcessor* |
| 108 | GrPipelineDynamicStateTestProcessor::createGLSLInstance(const GrShaderCaps&) const { |
| 109 | return new GLSLPipelineDynamicStateTestProcessor; |
| 110 | } |
| 111 | |
| 112 | class GrPipelineDynamicStateTestOp : public GrDrawOp { |
| 113 | public: |
| 114 | DEFINE_OP_CLASS_ID |
| 115 | |
Robert Phillips | be9aff2 | 2019-02-15 11:33:22 -0500 | [diff] [blame] | 116 | static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context, |
Chris Dalton | 916c498 | 2018-08-15 00:53:25 -0600 | [diff] [blame] | 117 | GrScissorTest scissorTest, |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 118 | sk_sp<const GrBuffer> vbuff) { |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 119 | GrOpMemoryPool* pool = context->priv().opMemoryPool(); |
Robert Phillips | c994a93 | 2018-06-19 13:09:54 -0400 | [diff] [blame] | 120 | |
Chris Dalton | 916c498 | 2018-08-15 00:53:25 -0600 | [diff] [blame] | 121 | return pool->allocate<GrPipelineDynamicStateTestOp>(scissorTest, std::move(vbuff)); |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | private: |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 125 | friend class GrOpMemoryPool; |
| 126 | |
Chris Dalton | 916c498 | 2018-08-15 00:53:25 -0600 | [diff] [blame] | 127 | GrPipelineDynamicStateTestOp(GrScissorTest scissorTest, sk_sp<const GrBuffer> vbuff) |
Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 128 | : INHERITED(ClassID()) |
Chris Dalton | 916c498 | 2018-08-15 00:53:25 -0600 | [diff] [blame] | 129 | , fScissorTest(scissorTest) |
Brian Salomon | d818ebf | 2018-07-02 14:08:49 +0000 | [diff] [blame] | 130 | , fVertexBuffer(std::move(vbuff)) { |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 131 | this->setBounds(SkRect::MakeIWH(kScreenSize, kScreenSize), |
| 132 | HasAABloat::kNo, IsZeroArea::kNo); |
| 133 | } |
| 134 | |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 135 | const char* name() const override { return "GrPipelineDynamicStateTestOp"; } |
| 136 | FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; } |
Chris Dalton | 6ce447a | 2019-06-23 18:07:38 -0600 | [diff] [blame] | 137 | GrProcessorSet::Analysis finalize(const GrCaps&, const GrAppliedClip*, |
| 138 | bool hasMixedSampledCoverage, GrClampType) override { |
Chris Dalton | 4b62aed | 2019-01-15 11:53:00 -0700 | [diff] [blame] | 139 | return GrProcessorSet::EmptySetAnalysis(); |
Brian Salomon | f86d37b | 2017-06-16 10:04:34 -0400 | [diff] [blame] | 140 | } |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 141 | void onPrepare(GrOpFlushState*) override {} |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 142 | void onExecute(GrOpFlushState* state, const SkRect& chainBounds) override { |
Greg Daniel | 2c3398d | 2019-06-19 11:58:01 -0400 | [diff] [blame] | 143 | GrPipeline pipeline(fScissorTest, SkBlendMode::kSrc, state->drawOpArgs().fOutputSwizzle); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 144 | SkSTArray<kNumMeshes, GrMesh> meshes; |
| 145 | for (int i = 0; i < kNumMeshes; ++i) { |
Chris Dalton | 3809bab | 2017-06-13 10:55:06 -0600 | [diff] [blame] | 146 | GrMesh& mesh = meshes.emplace_back(GrPrimitiveType::kTriangleStrip); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 147 | mesh.setNonIndexedNonInstanced(4); |
Brian Salomon | 12d2264 | 2019-01-29 14:38:50 -0500 | [diff] [blame] | 148 | mesh.setVertexData(fVertexBuffer, 4 * i); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 149 | } |
Brian Salomon | 4934890 | 2018-06-26 09:12:38 -0400 | [diff] [blame] | 150 | GrPipeline::DynamicStateArrays dynamicState; |
| 151 | dynamicState.fScissorRects = kDynamicScissors; |
| 152 | state->rtCommandBuffer()->draw(GrPipelineDynamicStateTestProcessor(), pipeline, nullptr, |
| 153 | &dynamicState, meshes.begin(), 4, |
Greg Daniel | 500d58b | 2017-08-24 15:59:33 -0400 | [diff] [blame] | 154 | SkRect::MakeIWH(kScreenSize, kScreenSize)); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 155 | } |
| 156 | |
Chris Dalton | 916c498 | 2018-08-15 00:53:25 -0600 | [diff] [blame] | 157 | GrScissorTest fScissorTest; |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 158 | const sk_sp<const GrBuffer> fVertexBuffer; |
| 159 | |
| 160 | typedef GrDrawOp INHERITED; |
| 161 | }; |
| 162 | |
| 163 | DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrPipelineDynamicStateTest, reporter, ctxInfo) { |
Robert Phillips | 88a32ef | 2018-06-07 11:05:56 -0400 | [diff] [blame] | 164 | GrContext* context = ctxInfo.grContext(); |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 165 | GrResourceProvider* rp = context->priv().resourceProvider(); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 166 | |
Robert Phillips | 9da87e0 | 2019-02-04 13:26:26 -0500 | [diff] [blame] | 167 | sk_sp<GrRenderTargetContext> rtc(context->priv().makeDeferredRenderTargetContext( |
Brian Salomon | 27ae52c | 2019-07-03 11:27:44 -0400 | [diff] [blame] | 168 | SkBackingFit::kExact, kScreenSize, kScreenSize, GrColorType::kRGBA_8888, nullptr)); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 169 | if (!rtc) { |
| 170 | ERRORF(reporter, "could not create render target context."); |
| 171 | return; |
| 172 | } |
| 173 | |
| 174 | constexpr float d = (float) kScreenSize; |
| 175 | Vertex vdata[kNumMeshes * 4] = { |
| 176 | {0, 0, kMeshColors[0]}, |
| 177 | {0, d, kMeshColors[0]}, |
| 178 | {d, 0, kMeshColors[0]}, |
| 179 | {d, d, kMeshColors[0]}, |
| 180 | |
| 181 | {0, 0, kMeshColors[1]}, |
| 182 | {0, d, kMeshColors[1]}, |
| 183 | {d, 0, kMeshColors[1]}, |
| 184 | {d, d, kMeshColors[1]}, |
| 185 | |
| 186 | {0, 0, kMeshColors[2]}, |
| 187 | {0, d, kMeshColors[2]}, |
| 188 | {d, 0, kMeshColors[2]}, |
| 189 | {d, d, kMeshColors[2]}, |
| 190 | |
| 191 | {0, 0, kMeshColors[3]}, |
| 192 | {0, d, kMeshColors[3]}, |
| 193 | {d, 0, kMeshColors[3]}, |
| 194 | {d, d, kMeshColors[3]} |
| 195 | }; |
| 196 | |
Brian Salomon | dbf7072 | 2019-02-07 11:31:24 -0500 | [diff] [blame] | 197 | sk_sp<const GrBuffer> vbuff(rp->createBuffer(sizeof(vdata), GrGpuBufferType::kVertex, |
| 198 | kDynamic_GrAccessPattern, vdata)); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 199 | if (!vbuff) { |
| 200 | ERRORF(reporter, "vbuff is null."); |
| 201 | return; |
| 202 | } |
| 203 | |
| 204 | uint32_t resultPx[kScreenSize * kScreenSize]; |
| 205 | |
Chris Dalton | 916c498 | 2018-08-15 00:53:25 -0600 | [diff] [blame] | 206 | for (GrScissorTest scissorTest : {GrScissorTest::kEnabled, GrScissorTest::kDisabled}) { |
Brian Osman | 9a9baae | 2018-11-05 15:06:26 -0500 | [diff] [blame] | 207 | rtc->clear(nullptr, SkPMColor4f::FromBytes_RGBA(0xbaaaaaad), |
| 208 | GrRenderTargetContext::CanClearFullscreen::kYes); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 209 | rtc->priv().testingOnly_addDrawOp( |
Chris Dalton | 916c498 | 2018-08-15 00:53:25 -0600 | [diff] [blame] | 210 | GrPipelineDynamicStateTestOp::Make(context, scissorTest, vbuff)); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 211 | rtc->readPixels(SkImageInfo::Make(kScreenSize, kScreenSize, |
| 212 | kRGBA_8888_SkColorType, kPremul_SkAlphaType), |
Brian Salomon | 1d43530 | 2019-07-01 13:05:28 -0400 | [diff] [blame] | 213 | resultPx, 4 * kScreenSize, {0, 0}); |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 214 | for (int y = 0; y < kScreenSize; ++y) { |
| 215 | for (int x = 0; x < kScreenSize; ++x) { |
| 216 | int expectedColorIdx; |
Chris Dalton | 916c498 | 2018-08-15 00:53:25 -0600 | [diff] [blame] | 217 | if (GrScissorTest::kEnabled == scissorTest) { |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 218 | expectedColorIdx = (x < kScreenSplitX ? 0 : 2) + (y < kScreenSplitY ? 0 : 1); |
| 219 | } else { |
| 220 | expectedColorIdx = kNumMeshes - 1; |
| 221 | } |
| 222 | uint32_t expected = kMeshColors[expectedColorIdx]; |
| 223 | uint32_t actual = resultPx[y * kScreenSize + x]; |
| 224 | if (expected != actual) { |
| 225 | ERRORF(reporter, "[scissor=%s] pixel (%i,%i): got 0x%x expected 0x%x", |
Chris Dalton | 916c498 | 2018-08-15 00:53:25 -0600 | [diff] [blame] | 226 | GrScissorTest::kEnabled == scissorTest ? "enabled" : "disabled", x, y, |
Chris Dalton | 46983b7 | 2017-06-06 12:27:16 -0600 | [diff] [blame] | 227 | actual, expected); |
| 228 | return; |
| 229 | } |
| 230 | } |
| 231 | } |
| 232 | } |
| 233 | } |