blob: 9ca6575a7226342a3b48fd40791895f11bde7312 [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
10#include "SkTypes.h"
11#include "Test.h"
12
13#if SK_SUPPORT_GPU
14#include "GrBatchFlushState.h"
15#include "GrDrawContext.h"
16#include "GrDrawContextPriv.h"
17#include "GrContext.h"
18#include "GrGeometryProcessor.h"
19#include "GrGpu.h"
20#include "GrTextureProvider.h"
21#include "glsl/GrGLSLGeometryProcessor.h"
22#include "glsl/GrGLSLVarying.h"
23#include "batches/GrVertexBatch.h"
24#include "SkString.h"
25
26namespace {
27class Batch : public GrVertexBatch {
28public:
29 DEFINE_BATCH_CLASS_ID
30
31 const char* name() const override { return "Dummy Batch"; }
32 void computePipelineOptimizations(GrInitInvariantOutput* color,
33 GrInitInvariantOutput* coverage,
34 GrBatchToXPOverrides* overrides) const override {
35 color->setUnknownFourComponents();
36 coverage->setUnknownSingleComponent();
37 }
38
39 void initBatchTracker(const GrXPOverridesForBatch& overrides) override {}
40
41 Batch(int numAttribs)
42 : INHERITED(ClassID())
43 , fNumAttribs(numAttribs) {
bsalomon88cf17d2016-07-08 06:40:56 -070044 this->setBounds(SkRect::MakeWH(1.f, 1.f), HasAABloat::kNo, IsZeroArea::kNo);
bsalomon1d417a82016-03-23 11:50:26 -070045 }
46
47private:
48 bool onCombineIfPossible(GrBatch*, const GrCaps&) override { return false; }
49 void onPrepareDraws(Target* target) const override {
50 class GP : public GrGeometryProcessor {
51 public:
52 GP(int numAttribs) {
53 this->initClassID<GP>();
54 SkASSERT(numAttribs > 1);
55 for (auto i = 0; i < numAttribs; ++i) {
56 fAttribNames.push_back().printf("attr%d", i);
57 }
58 for (auto i = 0; i < numAttribs; ++i) {
bsalomon6cb807b2016-08-17 11:33:39 -070059 this->addVertexAttrib(fAttribNames[i].c_str(), kVec2f_GrVertexAttribType);
bsalomon1d417a82016-03-23 11:50:26 -070060 }
Mike Kleinfc6c37b2016-09-27 09:34:10 -040061 }
bsalomon1d417a82016-03-23 11:50:26 -070062 const char* name() const override { return "Dummy GP"; }
63
64 GrGLSLPrimitiveProcessor* createGLSLInstance(const GrGLSLCaps&) const override {
65 class GLSLGP : public GrGLSLGeometryProcessor {
66 public:
67 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override {
68 const GP& gp = args.fGP.cast<GP>();
69 args.fVaryingHandler->emitAttributes(gp);
70 this->setupPosition(args.fVertBuilder, gpArgs, gp.fAttribs[0].fName);
71 }
72 void setData(const GrGLSLProgramDataManager& pdman,
bsalomona624bf32016-09-20 09:12:47 -070073 const GrPrimitiveProcessor& primProc,
74 FPCoordTransformIter&&) override {}
bsalomon1d417a82016-03-23 11:50:26 -070075 };
76 return new GLSLGP();
77 }
78 void getGLSLProcessorKey(const GrGLSLCaps&,
79 GrProcessorKeyBuilder* builder) const override {
80 builder->add32(this->numAttribs());
81 }
82
83 private:
84 SkTArray<SkString> fAttribNames;
85 };
86 SkAutoTUnref<GrGeometryProcessor> gp(new GP(fNumAttribs));
bsalomon1d417a82016-03-23 11:50:26 -070087 QuadHelper helper;
88 size_t vertexStride = gp->getVertexStride();
89 SkPoint* vertices = reinterpret_cast<SkPoint*>(helper.init(target, vertexStride, 1));
90 vertices->setRectFan(0.f, 0.f, 1.f, 1.f, vertexStride);
bsalomon342bfc22016-04-01 06:06:20 -070091 helper.recordDraw(target, gp);
bsalomon1d417a82016-03-23 11:50:26 -070092 }
93
94 int fNumAttribs;
95
96 typedef GrVertexBatch INHERITED;
97};
98}
99
egdanielb05df0f2016-06-27 07:15:20 -0700100DEF_GPUTEST_FOR_ALL_CONTEXTS(VertexAttributeCount, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -0700101 GrContext* context = ctxInfo.grContext();
robertphillipsd4c741e2016-04-28 09:55:15 -0700102
robertphillips6738c702016-07-27 12:13:51 -0700103 sk_sp<GrDrawContext> drawContext(context->makeDrawContext(SkBackingFit::kApprox,
104 1, 1, kRGBA_8888_GrPixelConfig,
105 nullptr));
robertphillips55fdccc2016-06-06 06:16:20 -0700106 if (!drawContext) {
bsalomon1d417a82016-03-23 11:50:26 -0700107 ERRORF(reporter, "Could not create draw context.");
108 return;
109 }
110 int attribCnt = context->caps()->maxVertexAttributes();
111 if (!attribCnt) {
112 ERRORF(reporter, "No attributes allowed?!");
113 return;
114 }
115 context->flush();
116 context->resetGpuStats();
117#if GR_GPU_STATS
118 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 0);
119 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 0);
120#endif
121 SkAutoTUnref<GrDrawBatch> batch;
robertphillips28a838e2016-06-23 14:07:00 -0700122 GrPaint grPaint;
bsalomon1d417a82016-03-23 11:50:26 -0700123 // This one should succeed.
124 batch.reset(new Batch(attribCnt));
robertphillips28a838e2016-06-23 14:07:00 -0700125 drawContext->drawContextPriv().testingOnly_drawBatch(grPaint, batch);
bsalomon1d417a82016-03-23 11:50:26 -0700126 context->flush();
127#if GR_GPU_STATS
128 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 1);
129 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 0);
130#endif
131 context->resetGpuStats();
132 // This one should fail.
133 batch.reset(new Batch(attribCnt+1));
robertphillips28a838e2016-06-23 14:07:00 -0700134 drawContext->drawContextPriv().testingOnly_drawBatch(grPaint, batch);
bsalomon1d417a82016-03-23 11:50:26 -0700135 context->flush();
136#if GR_GPU_STATS
137 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 0);
138 REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 1);
139#endif
140}
141#endif