2016-03-23 18:50:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This is a GPU-backend specific test. It relies on static intializers to work
|
|
|
|
|
|
|
|
#include "SkTypes.h"
|
|
|
|
#include "Test.h"
|
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#include "GrBatchFlushState.h"
|
2016-10-27 18:47:55 +00:00
|
|
|
#include "GrRenderTargetContext.h"
|
|
|
|
#include "GrRenderTargetContextPriv.h"
|
2016-03-23 18:50:26 +00:00
|
|
|
#include "GrContext.h"
|
|
|
|
#include "GrGeometryProcessor.h"
|
|
|
|
#include "GrGpu.h"
|
|
|
|
#include "GrTextureProvider.h"
|
|
|
|
#include "glsl/GrGLSLGeometryProcessor.h"
|
2016-10-13 20:25:34 +00:00
|
|
|
#include "glsl/GrGLSLFragmentShaderBuilder.h"
|
2016-03-23 18:50:26 +00:00
|
|
|
#include "glsl/GrGLSLVarying.h"
|
|
|
|
#include "batches/GrVertexBatch.h"
|
|
|
|
#include "SkString.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class Batch : public GrVertexBatch {
|
|
|
|
public:
|
2016-12-01 14:36:50 +00:00
|
|
|
DEFINE_OP_CLASS_ID
|
2016-03-23 18:50:26 +00:00
|
|
|
|
|
|
|
const char* name() const override { return "Dummy Batch"; }
|
|
|
|
void computePipelineOptimizations(GrInitInvariantOutput* color,
|
|
|
|
GrInitInvariantOutput* coverage,
|
|
|
|
GrBatchToXPOverrides* overrides) const override {
|
|
|
|
color->setUnknownFourComponents();
|
|
|
|
coverage->setUnknownSingleComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void initBatchTracker(const GrXPOverridesForBatch& overrides) override {}
|
|
|
|
|
|
|
|
Batch(int numAttribs)
|
|
|
|
: INHERITED(ClassID())
|
|
|
|
, fNumAttribs(numAttribs) {
|
2016-07-08 13:40:56 +00:00
|
|
|
this->setBounds(SkRect::MakeWH(1.f, 1.f), HasAABloat::kNo, IsZeroArea::kNo);
|
2016-03-23 18:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-12-01 14:36:50 +00:00
|
|
|
bool onCombineIfPossible(GrOp*, const GrCaps&) override { return false; }
|
2016-03-23 18:50:26 +00:00
|
|
|
void onPrepareDraws(Target* target) const override {
|
|
|
|
class GP : public GrGeometryProcessor {
|
|
|
|
public:
|
|
|
|
GP(int numAttribs) {
|
|
|
|
this->initClassID<GP>();
|
|
|
|
SkASSERT(numAttribs > 1);
|
|
|
|
for (auto i = 0; i < numAttribs; ++i) {
|
|
|
|
fAttribNames.push_back().printf("attr%d", i);
|
|
|
|
}
|
|
|
|
for (auto i = 0; i < numAttribs; ++i) {
|
2016-08-17 18:33:39 +00:00
|
|
|
this->addVertexAttrib(fAttribNames[i].c_str(), kVec2f_GrVertexAttribType);
|
2016-03-23 18:50:26 +00:00
|
|
|
}
|
2016-09-27 13:34:10 +00:00
|
|
|
}
|
2016-03-23 18:50:26 +00:00
|
|
|
const char* name() const override { return "Dummy GP"; }
|
|
|
|
|
2016-11-29 18:43:05 +00:00
|
|
|
GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const override {
|
2016-03-23 18:50:26 +00:00
|
|
|
class GLSLGP : public GrGLSLGeometryProcessor {
|
|
|
|
public:
|
|
|
|
void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override {
|
|
|
|
const GP& gp = args.fGP.cast<GP>();
|
|
|
|
args.fVaryingHandler->emitAttributes(gp);
|
|
|
|
this->setupPosition(args.fVertBuilder, gpArgs, gp.fAttribs[0].fName);
|
2016-10-13 20:25:34 +00:00
|
|
|
GrGLSLPPFragmentBuilder* fragBuilder = args.fFragBuilder;
|
|
|
|
fragBuilder->codeAppendf("%s = vec4(1);", args.fOutputColor);
|
|
|
|
fragBuilder->codeAppendf("%s = vec4(1);", args.fOutputCoverage);
|
2016-03-23 18:50:26 +00:00
|
|
|
}
|
|
|
|
void setData(const GrGLSLProgramDataManager& pdman,
|
2016-09-20 16:12:47 +00:00
|
|
|
const GrPrimitiveProcessor& primProc,
|
|
|
|
FPCoordTransformIter&&) override {}
|
2016-03-23 18:50:26 +00:00
|
|
|
};
|
|
|
|
return new GLSLGP();
|
|
|
|
}
|
2016-11-29 18:43:05 +00:00
|
|
|
void getGLSLProcessorKey(const GrShaderCaps&,
|
2016-03-23 18:50:26 +00:00
|
|
|
GrProcessorKeyBuilder* builder) const override {
|
|
|
|
builder->add32(this->numAttribs());
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SkTArray<SkString> fAttribNames;
|
|
|
|
};
|
2016-11-04 15:49:42 +00:00
|
|
|
sk_sp<GrGeometryProcessor> gp(new GP(fNumAttribs));
|
2016-03-23 18:50:26 +00:00
|
|
|
QuadHelper helper;
|
|
|
|
size_t vertexStride = gp->getVertexStride();
|
|
|
|
SkPoint* vertices = reinterpret_cast<SkPoint*>(helper.init(target, vertexStride, 1));
|
|
|
|
vertices->setRectFan(0.f, 0.f, 1.f, 1.f, vertexStride);
|
2016-11-04 15:49:42 +00:00
|
|
|
helper.recordDraw(target, gp.get());
|
2016-03-23 18:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int fNumAttribs;
|
|
|
|
|
|
|
|
typedef GrVertexBatch INHERITED;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-06-27 14:15:20 +00:00
|
|
|
DEF_GPUTEST_FOR_ALL_CONTEXTS(VertexAttributeCount, reporter, ctxInfo) {
|
2016-05-11 13:33:06 +00:00
|
|
|
GrContext* context = ctxInfo.grContext();
|
2016-04-28 16:55:15 +00:00
|
|
|
|
2016-10-27 18:47:55 +00:00
|
|
|
sk_sp<GrRenderTargetContext> renderTargetContext(context->makeRenderTargetContext(
|
|
|
|
SkBackingFit::kApprox,
|
|
|
|
1, 1, kRGBA_8888_GrPixelConfig,
|
|
|
|
nullptr));
|
|
|
|
if (!renderTargetContext) {
|
|
|
|
ERRORF(reporter, "Could not create render target context.");
|
2016-03-23 18:50:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
int attribCnt = context->caps()->maxVertexAttributes();
|
|
|
|
if (!attribCnt) {
|
|
|
|
ERRORF(reporter, "No attributes allowed?!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
context->flush();
|
|
|
|
context->resetGpuStats();
|
|
|
|
#if GR_GPU_STATS
|
|
|
|
REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 0);
|
|
|
|
REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 0);
|
|
|
|
#endif
|
2016-12-01 15:59:09 +00:00
|
|
|
sk_sp<GrDrawOp> batch;
|
2016-06-23 21:07:00 +00:00
|
|
|
GrPaint grPaint;
|
2016-03-23 18:50:26 +00:00
|
|
|
// This one should succeed.
|
|
|
|
batch.reset(new Batch(attribCnt));
|
2016-11-04 15:49:42 +00:00
|
|
|
renderTargetContext->priv().testingOnly_drawBatch(grPaint, batch.get());
|
2016-03-23 18:50:26 +00:00
|
|
|
context->flush();
|
|
|
|
#if GR_GPU_STATS
|
|
|
|
REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 1);
|
|
|
|
REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 0);
|
|
|
|
#endif
|
|
|
|
context->resetGpuStats();
|
|
|
|
// This one should fail.
|
|
|
|
batch.reset(new Batch(attribCnt+1));
|
2016-11-04 15:49:42 +00:00
|
|
|
renderTargetContext->priv().testingOnly_drawBatch(grPaint, batch.get());
|
2016-03-23 18:50:26 +00:00
|
|
|
context->flush();
|
|
|
|
#if GR_GPU_STATS
|
|
|
|
REPORTER_ASSERT(reporter, context->getGpu()->stats()->numDraws() == 0);
|
|
|
|
REPORTER_ASSERT(reporter, context->getGpu()->stats()->numFailedDraws() == 1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|