blob: 6fee1183972b0a44426082bffa1d0d494fb1b331 [file] [log] [blame]
bsalomon1d417a82016-03-23 11:50:26 -07001/*
2 * Copyright 2016 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
8// This is a GPU-backend specific test. It relies on static intializers to work
9
John Stilesfbd050b2020-08-03 13:21:46 -040010#include <memory>
11
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/core/SkTypes.h"
13#include "tests/Test.h"
bsalomon1d417a82016-03-23 11:50:26 -070014
Mike Kleinc0bd9f92019-04-23 12:05:21 -050015#include "include/core/SkString.h"
Robert Phillips6d344c32020-07-06 10:56:46 -040016#include "include/gpu/GrDirectContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050017#include "src/core/SkPointPriv.h"
Adlai Hollera0693042020-10-14 11:23:11 -040018#include "src/gpu/GrDirectContextPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "src/gpu/GrGeometryProcessor.h"
20#include "src/gpu/GrGpu.h"
21#include "src/gpu/GrMemoryPool.h"
22#include "src/gpu/GrOpFlushState.h"
Robert Phillips6941f4a2020-03-12 09:41:54 -040023#include "src/gpu/GrProgramInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050024#include "src/gpu/GrRenderTargetContext.h"
25#include "src/gpu/GrRenderTargetContextPriv.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/ops/GrMeshDrawOp.h"
Robert Phillips3968fcb2019-12-05 16:40:31 -050030#include "src/gpu/ops/GrSimpleMeshDrawOpHelper.h"
bsalomon1d417a82016-03-23 11:50:26 -070031
32namespace {
Brian Salomonb4b8a462017-07-13 15:29:47 -040033class Op : public GrMeshDrawOp {
bsalomon1d417a82016-03-23 11:50:26 -070034public:
Brian Salomon25a88092016-12-01 09:36:50 -050035 DEFINE_OP_CLASS_ID
bsalomon1d417a82016-03-23 11:50:26 -070036
Brian Salomon09d994e2016-12-21 11:14:46 -050037 const char* name() const override { return "Dummy Op"; }
bsalomon1d417a82016-03-23 11:50:26 -070038
Robert Phillips58adb342020-07-23 09:41:57 -040039 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* rContext, int numAttribs) {
40 GrOpMemoryPool* pool = rContext->priv().opMemoryPool();
Robert Phillipsc994a932018-06-19 13:09:54 -040041
42 return pool->allocate<Op>(numAttribs);
Brian Salomonb4b8a462017-07-13 15:29:47 -040043 }
44
45 FixedFunctionFlags fixedFunctionFlags() const override {
46 return FixedFunctionFlags::kNone;
47 }
48
Chris Dalton6ce447a2019-06-23 18:07:38 -060049 GrProcessorSet::Analysis finalize(const GrCaps&, const GrAppliedClip*,
50 bool hasMixedSampledCoverage, GrClampType) override {
Chris Dalton4b62aed2019-01-15 11:53:00 -070051 return GrProcessorSet::EmptySetAnalysis();
Brian Salomonf8334782017-01-03 09:42:58 -050052 }
Brian Salomon09d994e2016-12-21 11:14:46 -050053
54private:
Robert Phillips7c525e62018-06-12 10:11:12 -040055 friend class ::GrOpMemoryPool;
56
Brian Salomon09d994e2016-12-21 11:14:46 -050057 Op(int numAttribs) : INHERITED(ClassID()), fNumAttribs(numAttribs) {
Greg Daniel5faf4742019-10-01 15:14:44 -040058 this->setBounds(SkRect::MakeWH(1.f, 1.f), HasAABloat::kNo, IsHairline::kNo);
bsalomon1d417a82016-03-23 11:50:26 -070059 }
60
Robert Phillips2669a7b2020-03-12 12:07:19 -040061 GrProgramInfo* programInfo() override { return fProgramInfo; }
62
Robert Phillips6941f4a2020-03-12 09:41:54 -040063 void onCreateProgramInfo(const GrCaps* caps,
64 SkArenaAlloc* arena,
Brian Salomon8afde5f2020-04-01 16:22:00 -040065 const GrSurfaceProxyView* writeView,
Robert Phillips6941f4a2020-03-12 09:41:54 -040066 GrAppliedClip&& appliedClip,
Greg Danield358cbe2020-09-11 09:33:54 -040067 const GrXferProcessor::DstProxyView& dstProxyView,
68 GrXferBarrierFlags renderPassXferBarriers) override {
bsalomon1d417a82016-03-23 11:50:26 -070069 class GP : public GrGeometryProcessor {
70 public:
Robert Phillips7cd0bfe2019-11-20 16:08:10 -050071 static GrGeometryProcessor* Make(SkArenaAlloc* arena, int numAttribs) {
72 return arena->make<GP>(numAttribs);
Mike Kleinfc6c37b2016-09-27 09:34:10 -040073 }
Robert Phillips7cd0bfe2019-11-20 16:08:10 -050074
bsalomon1d417a82016-03-23 11:50:26 -070075 const char* name() const override { return "Dummy GP"; }
76
Brian Salomon94efbf52016-11-29 13:43:05 -050077 GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const override {
bsalomon1d417a82016-03-23 11:50:26 -070078 class GLSLGP : public GrGLSLGeometryProcessor {
79 public:
80 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override {
81 const GP& gp = args.fGP.cast<GP>();
82 args.fVaryingHandler->emitAttributes(gp);
Brian Salomon70132d02018-05-29 15:33:06 -040083 this->writeOutputPosition(args.fVertBuilder, gpArgs,
Brian Salomon92be2f72018-06-19 14:33:47 -040084 gp.fAttributes[0].name());
Chris Dalton60283612018-02-14 13:38:14 -070085 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
Ethan Nicholasf7b88202017-09-18 14:10:39 -040086 fragBuilder->codeAppendf("%s = half4(1);", args.fOutputColor);
87 fragBuilder->codeAppendf("%s = half4(1);", args.fOutputCoverage);
bsalomon1d417a82016-03-23 11:50:26 -070088 }
89 void setData(const GrGLSLProgramDataManager& pdman,
Brian Osman609f1592020-07-01 15:14:39 -040090 const GrPrimitiveProcessor& primProc) override {}
bsalomon1d417a82016-03-23 11:50:26 -070091 };
92 return new GLSLGP();
93 }
Brian Salomon94efbf52016-11-29 13:43:05 -050094 void getGLSLProcessorKey(const GrShaderCaps&,
bsalomon1d417a82016-03-23 11:50:26 -070095 GrProcessorKeyBuilder* builder) const override {
Brian Salomon92be2f72018-06-19 14:33:47 -040096 builder->add32(fNumAttribs);
bsalomon1d417a82016-03-23 11:50:26 -070097 }
98
99 private:
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500100 friend class ::SkArenaAlloc; // for access to ctor
101
102 GP(int numAttribs) : INHERITED(kGP_ClassID), fNumAttribs(numAttribs) {
103 SkASSERT(numAttribs > 1);
John Stilesfbd050b2020-08-03 13:21:46 -0400104 fAttribNames = std::make_unique<SkString[]>(numAttribs);
105 fAttributes = std::make_unique<Attribute[]>(numAttribs);
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500106 for (auto i = 0; i < numAttribs; ++i) {
107 fAttribNames[i].printf("attr%d", i);
108 // This gives us more of a mix of attribute types, and allows the
109 // component count to fit within the limits for iOS Metal.
110 if (i & 0x1) {
111 fAttributes[i] = {fAttribNames[i].c_str(), kFloat_GrVertexAttribType,
112 kFloat_GrSLType};
113 } else {
114 fAttributes[i] = {fAttribNames[i].c_str(), kFloat2_GrVertexAttribType,
115 kFloat2_GrSLType};
116 }
117 }
118 this->setVertexAttributes(fAttributes.get(), numAttribs);
119 }
120
Brian Salomon92be2f72018-06-19 14:33:47 -0400121 int fNumAttribs;
122 std::unique_ptr<SkString[]> fAttribNames;
123 std::unique_ptr<Attribute[]> fAttributes;
Ethan Nicholasabff9562017-10-09 10:54:08 -0400124
John Stiles7571f9e2020-09-02 22:42:33 -0400125 using INHERITED = GrGeometryProcessor;
bsalomon1d417a82016-03-23 11:50:26 -0700126 };
Robert Phillips7cd0bfe2019-11-20 16:08:10 -0500127
Robert Phillips6941f4a2020-03-12 09:41:54 -0400128 GrGeometryProcessor* gp = GP::Make(arena, fNumAttribs);
129
130 fProgramInfo = GrSimpleMeshDrawOpHelper::CreateProgramInfo(caps,
131 arena,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400132 writeView,
Robert Phillips6941f4a2020-03-12 09:41:54 -0400133 std::move(appliedClip),
134 dstProxyView,
135 gp,
136 GrProcessorSet::MakeEmptySet(),
137 GrPrimitiveType::kTriangles,
Greg Danield358cbe2020-09-11 09:33:54 -0400138 renderPassXferBarriers,
Robert Phillips6941f4a2020-03-12 09:41:54 -0400139 GrPipeline::InputFlags::kNone);
140 }
141
Robert Phillips6941f4a2020-03-12 09:41:54 -0400142 void onPrepareDraws(Target* target) override {
143 if (!fProgramInfo) {
144 this->createProgramInfo(target);
145 }
146
147 size_t vertexStride = fProgramInfo->primProc().vertexStride();
Brian Salomon7eae3e02018-08-07 14:02:38 +0000148 QuadHelper helper(target, vertexStride, 1);
149 SkPoint* vertices = reinterpret_cast<SkPoint*>(helper.vertices());
Cary Clark74f623d2017-11-06 20:02:02 -0500150 SkPointPriv::SetRectTriStrip(vertices, 0.f, 0.f, 1.f, 1.f, vertexStride);
Robert Phillips6941f4a2020-03-12 09:41:54 -0400151 fMesh = helper.mesh();
Robert Phillips4133dc42020-03-11 15:55:55 -0400152 }
153
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700154 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
Robert Phillips6941f4a2020-03-12 09:41:54 -0400155 if (!fProgramInfo || !fMesh) {
156 return;
157 }
Robert Phillips3968fcb2019-12-05 16:40:31 -0500158
Chris Dalton765ed362020-03-16 17:34:44 -0600159 flushState->bindPipelineAndScissorClip(*fProgramInfo, chainBounds);
160 flushState->bindTextures(fProgramInfo->primProc(), nullptr, fProgramInfo->pipeline());
161 flushState->drawMesh(*fMesh);
bsalomon1d417a82016-03-23 11:50:26 -0700162 }
163
Robert Phillips6941f4a2020-03-12 09:41:54 -0400164 int fNumAttribs;
Chris Daltoneb694b72020-03-16 09:25:50 -0600165 GrSimpleMesh* fMesh = nullptr;
Robert Phillips6941f4a2020-03-12 09:41:54 -0400166 GrProgramInfo* fProgramInfo = nullptr;
bsalomon1d417a82016-03-23 11:50:26 -0700167
John Stiles7571f9e2020-09-02 22:42:33 -0400168 using INHERITED = GrMeshDrawOp;
bsalomon1d417a82016-03-23 11:50:26 -0700169};
John Stilesa6841be2020-08-06 14:11:56 -0400170} // namespace
bsalomon1d417a82016-03-23 11:50:26 -0700171
egdanielb05df0f2016-06-27 07:15:20 -0700172DEF_GPUTEST_FOR_ALL_CONTEXTS(VertexAttributeCount, reporter, ctxInfo) {
Robert Phillips6d344c32020-07-06 10:56:46 -0400173 auto context = ctxInfo.directContext();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500174#if GR_GPU_STATS
Robert Phillips9da87e02019-02-04 13:26:26 -0500175 GrGpu* gpu = context->priv().getGpu();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500176#endif
robertphillipsd4c741e2016-04-28 09:55:15 -0700177
Greg Daniele20fcad2020-01-08 11:52:34 -0500178 auto renderTargetContext = GrRenderTargetContext::Make(
179 context, GrColorType::kRGBA_8888, nullptr, SkBackingFit::kApprox, {1, 1});
Brian Osman11052242016-10-27 14:47:55 -0400180 if (!renderTargetContext) {
181 ERRORF(reporter, "Could not create render target context.");
bsalomon1d417a82016-03-23 11:50:26 -0700182 return;
183 }
Robert Phillips9da87e02019-02-04 13:26:26 -0500184 int attribCnt = context->priv().caps()->maxVertexAttributes();
bsalomon1d417a82016-03-23 11:50:26 -0700185 if (!attribCnt) {
186 ERRORF(reporter, "No attributes allowed?!");
187 return;
188 }
Greg Daniel0a2464f2020-05-14 15:45:44 -0400189 context->flushAndSubmit();
Robert Phillips9da87e02019-02-04 13:26:26 -0500190 context->priv().resetGpuStats();
bsalomon1d417a82016-03-23 11:50:26 -0700191#if GR_GPU_STATS
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500192 REPORTER_ASSERT(reporter, gpu->stats()->numDraws() == 0);
193 REPORTER_ASSERT(reporter, gpu->stats()->numFailedDraws() == 0);
bsalomon1d417a82016-03-23 11:50:26 -0700194#endif
Greg Danielf44cb482018-02-27 14:26:32 -0500195 // Adding discard to appease vulkan validation warning about loading uninitialized data on draw
196 renderTargetContext->discard();
197
robertphillips28a838e2016-06-23 14:07:00 -0700198 GrPaint grPaint;
bsalomon1d417a82016-03-23 11:50:26 -0700199 // This one should succeed.
Robert Phillips7c525e62018-06-12 10:11:12 -0400200 renderTargetContext->priv().testingOnly_addDrawOp(Op::Make(context, attribCnt));
Greg Daniel0a2464f2020-05-14 15:45:44 -0400201 context->flushAndSubmit();
bsalomon1d417a82016-03-23 11:50:26 -0700202#if GR_GPU_STATS
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500203 REPORTER_ASSERT(reporter, gpu->stats()->numDraws() == 1);
204 REPORTER_ASSERT(reporter, gpu->stats()->numFailedDraws() == 0);
bsalomon1d417a82016-03-23 11:50:26 -0700205#endif
Robert Phillips9da87e02019-02-04 13:26:26 -0500206 context->priv().resetGpuStats();
Robert Phillips7c525e62018-06-12 10:11:12 -0400207 renderTargetContext->priv().testingOnly_addDrawOp(Op::Make(context, attribCnt + 1));
Greg Daniel0a2464f2020-05-14 15:45:44 -0400208 context->flushAndSubmit();
bsalomon1d417a82016-03-23 11:50:26 -0700209#if GR_GPU_STATS
Robert Phillipsf35fd8d2018-01-22 10:48:15 -0500210 REPORTER_ASSERT(reporter, gpu->stats()->numDraws() == 0);
211 REPORTER_ASSERT(reporter, gpu->stats()->numFailedDraws() == 1);
bsalomon1d417a82016-03-23 11:50:26 -0700212#endif
213}