blob: c4740438091c4105fbfabc97c2b6bfce2e1a3394 [file] [log] [blame]
/*
* Copyright 2020 Google LLC.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrTessellationShader_DEFINED
#define GrTessellationShader_DEFINED
#include "src/gpu/BufferWriter.h"
#include "src/gpu/ganesh/GrGeometryProcessor.h"
#include "src/gpu/ganesh/GrProgramInfo.h"
class SkArenaAlloc;
// This is a common base class for shaders in the GPU tessellator.
class GrTessellationShader : public GrGeometryProcessor {
public:
GrTessellationShader(ClassID classID, GrPrimitiveType primitiveType,
const SkMatrix& viewMatrix,
const SkPMColor4f& color)
: GrGeometryProcessor(classID)
, fPrimitiveType(primitiveType)
, fViewMatrix(viewMatrix)
, fColor(color) {
}
GrPrimitiveType primitiveType() const { return fPrimitiveType; }
const SkMatrix& viewMatrix() const { return fViewMatrix; }
const SkPMColor4f& color() const { return fColor;}
struct ProgramArgs {
SkArenaAlloc* fArena;
const GrSurfaceProxyView& fWriteView;
bool fUsesMSAASurface;
const GrDstProxyView* fDstProxyView;
GrXferBarrierFlags fXferBarrierFlags;
GrLoadOp fColorLoadOp;
const GrCaps* fCaps;
};
static const GrPipeline* MakePipeline(const ProgramArgs&, GrAAType,
GrAppliedClip&&, GrProcessorSet&&);
static GrProgramInfo* MakeProgram(const ProgramArgs& args,
const GrTessellationShader* shader,
const GrPipeline* pipeline,
const GrUserStencilSettings* stencil) {
return args.fArena->make<GrProgramInfo>(*args.fCaps, args.fWriteView, args.fUsesMSAASurface,
pipeline, stencil, shader, shader->fPrimitiveType,
args.fXferBarrierFlags, args.fColorLoadOp);
}
// SkSL functions that calculate Wang's formula for cubics or conics.
static const char* WangsFormulaSkSL();
private:
const GrPrimitiveType fPrimitiveType;
const SkMatrix fViewMatrix;
const SkPMColor4f fColor;
};
#endif