blob: f8ad97a4acff6f230f2d4a45d196e7f65c7c5298 [file] [log] [blame]
/*
* Copyright 2022 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef skgpu_graphite_render_AnalyticRRectRenderStep_DEFINED
#define skgpu_graphite_render_AnalyticRRectRenderStep_DEFINED
#include "src/gpu/graphite/Renderer.h"
namespace skgpu::graphite {
class AnalyticRRectRenderStep final : public RenderStep {
public:
AnalyticRRectRenderStep();
~AnalyticRRectRenderStep() override;
const char* vertexSkSL() const override;
const char* fragmentCoverageSkSL() const override;
void writeVertices(DrawWriter*, const DrawParams&, int ssboIndex) const override;
void writeUniformsAndTextures(const DrawParams&, PipelineDataGatherer*) const override;
private:
};
} // namespace skgpu::graphite
#endif // skgpu_render_AnalyticRRectRenderStep_DEFINED