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 "GrContext.h"
|
|
|
|
#include "GrGeometryProcessor.h"
|
|
|
|
#include "GrGpu.h"
|
2016-12-16 14:52:16 +00:00
|
|
|
#include "GrOpFlushState.h"
|
2016-12-01 21:40:24 +00:00
|
|
|
#include "GrRenderTargetContext.h"
|
|
|
|
#include "GrRenderTargetContextPriv.h"
|
2017-11-07 01:02:02 +00:00
|
|
|
#include "SkPointPriv.h"
|
2016-12-01 21:40:24 +00:00
|
|
|
#include "SkString.h"
|
2016-10-13 20:25:34 +00:00
|
|
|
#include "glsl/GrGLSLFragmentShaderBuilder.h"
|
2016-12-01 21:40:24 +00:00
|
|
|
#include "glsl/GrGLSLGeometryProcessor.h"
|
2016-03-23 18:50:26 +00:00
|
|
|
#include "glsl/GrGLSLVarying.h"
|
2016-12-16 14:52:16 +00:00
|
|
|
#include "ops/GrMeshDrawOp.h"
|
2016-03-23 18:50:26 +00:00
|
|
|
|
|
|
|
namespace {
|
2017-07-13 19:29:47 +00:00
|
|
|
class Op : public GrMeshDrawOp {
|
2016-03-23 18:50:26 +00:00
|
|
|
public:
|
2016-12-01 14:36:50 +00:00
|
|
|
DEFINE_OP_CLASS_ID
|
2016-03-23 18:50:26 +00:00
|
|
|
|
2016-12-21 16:14:46 +00:00
|
|
|
const char* name() const override { return "Dummy Op"; }
|
2016-03-23 18:50:26 +00:00
|
|
|
|
2017-07-13 19:29:47 +00:00
|
|
|
static std::unique_ptr<GrDrawOp> Make(int numAttribs) {
|
|
|
|
return std::unique_ptr<GrDrawOp>(new Op(numAttribs));
|
|
|
|
}
|
|
|
|
|
|
|
|
FixedFunctionFlags fixedFunctionFlags() const override {
|
|
|
|
return FixedFunctionFlags::kNone;
|
|
|
|
}
|
|
|
|
|
2017-09-20 13:53:22 +00:00
|
|
|
RequiresDstTexture finalize(const GrCaps&, const GrAppliedClip*,\
|
|
|
|
GrPixelConfigIsClamped) override {
|
2017-07-13 19:29:47 +00:00
|
|
|
return RequiresDstTexture::kNo;
|
2017-01-03 14:42:58 +00:00
|
|
|
}
|
2016-12-21 16:14:46 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Op(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
|
|
|
}
|
|
|
|
|
2016-12-01 14:36:50 +00:00
|
|
|
bool onCombineIfPossible(GrOp*, const GrCaps&) override { return false; }
|
2017-07-13 19:29:47 +00:00
|
|
|
|
2017-08-09 20:02:19 +00:00
|
|
|
void onPrepareDraws(Target* target) override {
|
2016-03-23 18:50:26 +00:00
|
|
|
class GP : public GrGeometryProcessor {
|
|
|
|
public:
|
2017-10-09 14:54:08 +00:00
|
|
|
GP(int numAttribs)
|
|
|
|
: INHERITED(kGP_ClassID) {
|
2016-03-23 18:50:26 +00:00
|
|
|
SkASSERT(numAttribs > 1);
|
|
|
|
for (auto i = 0; i < numAttribs; ++i) {
|
|
|
|
fAttribNames.push_back().printf("attr%d", i);
|
|
|
|
}
|
|
|
|
for (auto i = 0; i < numAttribs; ++i) {
|
2017-09-25 13:52:04 +00:00
|
|
|
this->addVertexAttrib(fAttribNames[i].c_str(), kFloat2_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);
|
2017-08-16 13:41:48 +00:00
|
|
|
this->writeOutputPosition(args.fVertBuilder, gpArgs, gp.getAttrib(0).fName);
|
2018-02-14 20:38:14 +00:00
|
|
|
GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
|
2017-09-18 18:10:39 +00:00
|
|
|
fragBuilder->codeAppendf("%s = half4(1);", args.fOutputColor);
|
|
|
|
fragBuilder->codeAppendf("%s = half4(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;
|
2017-10-09 14:54:08 +00:00
|
|
|
|
|
|
|
typedef GrGeometryProcessor INHERITED;
|
2016-03-23 18:50:26 +00:00
|
|
|
};
|
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));
|
2017-11-07 01:02:02 +00:00
|
|
|
SkPointPriv::SetRectTriStrip(vertices, 0.f, 0.f, 1.f, 1.f, vertexStride);
|
2017-08-09 20:02:19 +00:00
|
|
|
helper.recordDraw(target, gp.get(),
|
2017-08-09 20:27:09 +00:00
|
|
|
target->makePipeline(0, GrProcessorSet::MakeEmptySet(),
|
|
|
|
target->detachAppliedClip()));
|
2016-03-23 18:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int fNumAttribs;
|
|
|
|
|
2017-07-13 19:29:47 +00:00
|
|
|
typedef GrMeshDrawOp INHERITED;
|
2016-03-23 18:50:26 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
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();
|
2018-01-22 15:48:15 +00:00
|
|
|
#if GR_GPU_STATS
|
|
|
|
GrGpu* gpu = context->contextPriv().getGpu();
|
|
|
|
#endif
|
2016-04-28 16:55:15 +00:00
|
|
|
|
2017-04-24 14:57:28 +00:00
|
|
|
sk_sp<GrRenderTargetContext> renderTargetContext(context->makeDeferredRenderTargetContext(
|
2016-10-27 18:47:55 +00:00
|
|
|
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
|
2018-01-22 15:48:15 +00:00
|
|
|
REPORTER_ASSERT(reporter, gpu->stats()->numDraws() == 0);
|
|
|
|
REPORTER_ASSERT(reporter, gpu->stats()->numFailedDraws() == 0);
|
2016-03-23 18:50:26 +00:00
|
|
|
#endif
|
2018-02-27 19:26:32 +00:00
|
|
|
// Adding discard to appease vulkan validation warning about loading uninitialized data on draw
|
|
|
|
renderTargetContext->discard();
|
|
|
|
|
2016-06-23 21:07:00 +00:00
|
|
|
GrPaint grPaint;
|
2016-03-23 18:50:26 +00:00
|
|
|
// This one should succeed.
|
2017-07-13 19:29:47 +00:00
|
|
|
renderTargetContext->priv().testingOnly_addDrawOp(Op::Make(attribCnt));
|
2016-03-23 18:50:26 +00:00
|
|
|
context->flush();
|
|
|
|
#if GR_GPU_STATS
|
2018-01-22 15:48:15 +00:00
|
|
|
REPORTER_ASSERT(reporter, gpu->stats()->numDraws() == 1);
|
|
|
|
REPORTER_ASSERT(reporter, gpu->stats()->numFailedDraws() == 0);
|
2016-03-23 18:50:26 +00:00
|
|
|
#endif
|
|
|
|
context->resetGpuStats();
|
2017-07-13 19:29:47 +00:00
|
|
|
renderTargetContext->priv().testingOnly_addDrawOp(Op::Make(attribCnt + 1));
|
2016-03-23 18:50:26 +00:00
|
|
|
context->flush();
|
|
|
|
#if GR_GPU_STATS
|
2018-01-22 15:48:15 +00:00
|
|
|
REPORTER_ASSERT(reporter, gpu->stats()->numDraws() == 0);
|
|
|
|
REPORTER_ASSERT(reporter, gpu->stats()->numFailedDraws() == 1);
|
2016-03-23 18:50:26 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|