2018-11-13 20:07:24 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
|
|
|
#include "include/utils/SkTextUtils.h"
|
|
|
|
#include "tools/ToolUtils.h"
|
2018-11-13 20:07:24 +00:00
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/gpu/GrContext.h"
|
|
|
|
#include "include/private/GrRecordingContext.h"
|
|
|
|
#include "src/gpu/GrContextPriv.h"
|
|
|
|
#include "src/gpu/GrGpuCommandBuffer.h"
|
|
|
|
#include "src/gpu/GrMemoryPool.h"
|
|
|
|
#include "src/gpu/GrOpFlushState.h"
|
|
|
|
#include "src/gpu/GrRecordingContextPriv.h"
|
|
|
|
#include "src/gpu/GrRenderTargetContext.h"
|
|
|
|
#include "src/gpu/GrRenderTargetContextPriv.h"
|
|
|
|
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
|
|
|
|
#include "src/gpu/glsl/GrGLSLGeometryProcessor.h"
|
|
|
|
#include "src/gpu/glsl/GrGLSLVarying.h"
|
|
|
|
#include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
|
2018-11-13 20:07:24 +00:00
|
|
|
|
2019-02-07 22:23:36 +00:00
|
|
|
/**
|
|
|
|
* This test ensures that fwidth() works properly on GPU configs by drawing a squircle.
|
|
|
|
*/
|
2018-11-13 20:07:24 +00:00
|
|
|
namespace skiagm {
|
|
|
|
|
|
|
|
static constexpr GrGeometryProcessor::Attribute gVertex =
|
|
|
|
{"bboxcoord", kFloat2_GrVertexAttribType, kFloat2_GrSLType};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// SkSL code.
|
|
|
|
|
|
|
|
class FwidthSquircleTestProcessor : public GrGeometryProcessor {
|
|
|
|
public:
|
|
|
|
FwidthSquircleTestProcessor(const SkMatrix& viewMatrix)
|
|
|
|
: GrGeometryProcessor(kFwidthSquircleTestProcessor_ClassID)
|
|
|
|
, fViewMatrix(viewMatrix) {
|
|
|
|
this->setVertexAttributes(&gVertex, 1);
|
|
|
|
}
|
|
|
|
const char* name() const override { return "FwidthSquircleTestProcessor"; }
|
|
|
|
void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const final {}
|
|
|
|
GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps&) const final;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const SkMatrix fViewMatrix;
|
|
|
|
|
|
|
|
class Impl;
|
|
|
|
};
|
|
|
|
|
|
|
|
class FwidthSquircleTestProcessor::Impl : public GrGLSLGeometryProcessor {
|
|
|
|
void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override {
|
|
|
|
const auto& proc = args.fGP.cast<FwidthSquircleTestProcessor>();
|
|
|
|
|
|
|
|
auto* uniforms = args.fUniformHandler;
|
|
|
|
fViewMatrixHandle =
|
|
|
|
uniforms->addUniform(kVertex_GrShaderFlag, kFloat3x3_GrSLType, "viewmatrix");
|
|
|
|
|
|
|
|
auto* varyings = args.fVaryingHandler;
|
|
|
|
varyings->emitAttributes(proc);
|
|
|
|
|
|
|
|
GrGLSLVarying squircleCoord(kFloat2_GrSLType);
|
|
|
|
varyings->addVarying("bboxcoord", &squircleCoord);
|
|
|
|
|
|
|
|
auto* v = args.fVertBuilder;
|
|
|
|
v->codeAppendf("float2x2 R = float2x2(cos(.05), sin(.05), -sin(.05), cos(.05));");
|
|
|
|
|
|
|
|
v->codeAppendf("%s = bboxcoord * 1.25;", squircleCoord.vsOut());
|
|
|
|
v->codeAppendf("float3 vertexpos = float3(bboxcoord * 100 * R + 100, 1);");
|
|
|
|
v->codeAppendf("vertexpos = %s * vertexpos;", uniforms->getUniformCStr(fViewMatrixHandle));
|
|
|
|
gpArgs->fPositionVar.set(kFloat3_GrSLType, "vertexpos");
|
|
|
|
|
|
|
|
auto* f = args.fFragBuilder;
|
|
|
|
f->codeAppendf("float golden_ratio = 1.61803398875;");
|
|
|
|
f->codeAppendf("float pi = 3.141592653589793;");
|
|
|
|
f->codeAppendf("float x = abs(%s.x), y = abs(%s.y);",
|
|
|
|
squircleCoord.fsIn(), squircleCoord.fsIn());
|
|
|
|
|
|
|
|
// Squircle function!
|
2019-02-05 22:17:40 +00:00
|
|
|
f->codeAppendf("float fn = half(pow(x, golden_ratio*pi) + pow(y, golden_ratio*pi) - 1);");
|
2018-11-13 20:07:24 +00:00
|
|
|
f->codeAppendf("float fnwidth = fwidth(fn);");
|
|
|
|
f->codeAppendf("fnwidth += 1e-10;"); // Guard against divide-by-zero.
|
2019-02-05 22:17:40 +00:00
|
|
|
f->codeAppendf("half coverage = clamp(half(.5 - fn/fnwidth), 0, 1);");
|
2018-11-13 20:07:24 +00:00
|
|
|
|
|
|
|
f->codeAppendf("%s = half4(.51, .42, .71, 1) * .89;", args.fOutputColor);
|
|
|
|
f->codeAppendf("%s = half4(coverage);", args.fOutputCoverage);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor& primProc,
|
|
|
|
FPCoordTransformIter&& transformIter) override {
|
|
|
|
const auto& proc = primProc.cast<FwidthSquircleTestProcessor>();
|
|
|
|
pdman.setSkMatrix(fViewMatrixHandle, proc.fViewMatrix);
|
|
|
|
}
|
|
|
|
|
|
|
|
UniformHandle fViewMatrixHandle;
|
|
|
|
};
|
|
|
|
|
|
|
|
GrGLSLPrimitiveProcessor* FwidthSquircleTestProcessor::createGLSLInstance(
|
|
|
|
const GrShaderCaps&) const {
|
|
|
|
return new Impl();
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Draw Op.
|
|
|
|
|
|
|
|
class FwidthSquircleTestOp : public GrDrawOp {
|
|
|
|
public:
|
|
|
|
DEFINE_OP_CLASS_ID
|
|
|
|
|
2019-02-15 16:33:22 +00:00
|
|
|
static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* ctx, const SkMatrix& viewMatrix) {
|
2019-02-04 18:26:26 +00:00
|
|
|
GrOpMemoryPool* pool = ctx->priv().opMemoryPool();
|
2018-11-13 20:07:24 +00:00
|
|
|
return pool->allocate<FwidthSquircleTestOp>(viewMatrix);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
FwidthSquircleTestOp(const SkMatrix& viewMatrix)
|
|
|
|
: GrDrawOp(ClassID())
|
|
|
|
, fViewMatrix(viewMatrix) {
|
|
|
|
this->setBounds(SkRect::MakeIWH(200, 200), HasAABloat::kNo, IsZeroArea::kNo);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* name() const override { return "ClockwiseTestOp"; }
|
|
|
|
FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
|
2019-03-15 14:15:29 +00:00
|
|
|
GrProcessorSet::Analysis finalize(
|
|
|
|
const GrCaps&, const GrAppliedClip*, GrFSAAType, GrClampType) override {
|
2019-01-15 18:53:00 +00:00
|
|
|
return GrProcessorSet::EmptySetAnalysis();
|
2018-11-13 20:07:24 +00:00
|
|
|
}
|
|
|
|
void onPrepare(GrOpFlushState*) override {}
|
2018-11-14 18:56:37 +00:00
|
|
|
void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
|
2018-11-13 20:07:24 +00:00
|
|
|
SkPoint vertices[4] = {
|
|
|
|
{-1, -1},
|
|
|
|
{+1, -1},
|
|
|
|
{-1, +1},
|
|
|
|
{+1, +1},
|
|
|
|
};
|
2019-01-29 19:38:50 +00:00
|
|
|
sk_sp<const GrBuffer> vertexBuffer(flushState->resourceProvider()->createBuffer(
|
2019-02-07 16:31:24 +00:00
|
|
|
sizeof(vertices), GrGpuBufferType::kVertex, kStatic_GrAccessPattern, vertices));
|
2018-11-13 20:07:24 +00:00
|
|
|
if (!vertexBuffer) {
|
|
|
|
return;
|
|
|
|
}
|
2019-01-31 19:13:59 +00:00
|
|
|
GrPipeline pipeline(GrScissorTest::kDisabled, SkBlendMode::kSrcOver);
|
2018-11-13 20:07:24 +00:00
|
|
|
GrMesh mesh(GrPrimitiveType::kTriangleStrip);
|
|
|
|
mesh.setNonIndexedNonInstanced(4);
|
2019-01-29 19:38:50 +00:00
|
|
|
mesh.setVertexData(std::move(vertexBuffer));
|
2018-11-13 20:07:24 +00:00
|
|
|
flushState->rtCommandBuffer()->draw(FwidthSquircleTestProcessor(fViewMatrix), pipeline,
|
|
|
|
nullptr, nullptr, &mesh, 1, SkRect::MakeIWH(100, 100));
|
|
|
|
}
|
|
|
|
|
|
|
|
const SkMatrix fViewMatrix;
|
|
|
|
|
|
|
|
friend class ::GrOpMemoryPool; // for ctor
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Test.
|
|
|
|
|
2019-02-07 23:20:09 +00:00
|
|
|
DEF_SIMPLE_GPU_GM_CAN_FAIL(fwidth_squircle, ctx, rtc, canvas, errorMsg, 200, 200) {
|
2019-02-04 18:26:26 +00:00
|
|
|
if (!ctx->priv().caps()->shaderCaps()->shaderDerivativeSupport()) {
|
2019-02-07 23:20:09 +00:00
|
|
|
*errorMsg = "Shader derivatives not supported.";
|
|
|
|
return DrawResult::kSkip;
|
2018-11-13 20:07:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw the test directly to the frame buffer.
|
2019-02-07 22:23:36 +00:00
|
|
|
canvas->clear(SK_ColorWHITE);
|
2018-11-13 20:07:24 +00:00
|
|
|
rtc->priv().testingOnly_addDrawOp(FwidthSquircleTestOp::Make(ctx, canvas->getTotalMatrix()));
|
2019-02-07 23:20:09 +00:00
|
|
|
return skiagm::DrawResult::kOk;
|
2018-11-13 20:07:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SK_SUPPORT_GPU
|