blob: ab6bb8851554c9182eb7b24b4175d1d27e482a1e [file]
/*
* 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_CoverBoundsRenderStep_DEFINED
#define skgpu_graphite_render_CoverBoundsRenderStep_DEFINED
#include "src/core/SkVx.h"
#include "src/gpu/graphite/Renderer.h"
#include <string>
namespace skgpu::graphite {
class DrawParams;
class DrawWriter;
class PipelineDataGatherer;
struct DepthStencilSettings;
class CoverBoundsRenderStep final : public RenderStep {
public:
CoverBoundsRenderStep(Layout, RenderStep::RenderStepID, DepthStencilSettings);
~CoverBoundsRenderStep() override;
std::string vertexSkSL(const RootNodesInfo&) const override;
void writeVertices(DrawWriter*, const DrawParams&, uint32_t ssboIndex) const override;
void writeUniformsAndTextures(const DrawParams&, PipelineDataGatherer*) const override;
private:
};
} // namespace skgpu::graphite
#endif // skgpu_render_CoverBoundsRenderStep_DEFINED