blob: 609fa43af0e00392d9f54e45c3d2688e761e2f6c [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/base/SkVx.h"
#include "src/gpu/graphite/Renderer.h"
#include "src/gpu/graphite/ResourceTypes.h"
#include <string>
namespace skgpu::graphite {
class DrawParams;
class DrawWriter;
class PipelineDataGatherer;
class StaticBufferManager;
class AnalyticRRectRenderStep final : public RenderStep {
public:
AnalyticRRectRenderStep(Layout, StaticBufferManager*);
~AnalyticRRectRenderStep() override;
std::string vertexSkSL() const override;
const char* fragmentCoverageSkSL() const override;
void writeVertices(DrawWriter*, const DrawParams&, uint32_t ssboIndex) const override;
void writeUniformsAndTextures(const DrawParams&, PipelineDataGatherer*) const override;
private:
// Points to the static buffers holding the fixed indexed vertex template for drawing instances.
BindBufferInfo fVertexBuffer;
BindBufferInfo fIndexBuffer;
};
} // namespace skgpu::graphite
#endif // skgpu_render_AnalyticRRectRenderStep_DEFINED