blob: 728a952562ee9bdc97babd6fa3e98841b1900fd7 [file] [log] [blame]
/*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef skgpu_RenderPipeline_DEFINED
#define skgpu_RenderPipeline_DEFINED
#include "include/core/SkRefCnt.h"
namespace skgpu {
class RenderPipeline : public SkRefCnt {
public:
~RenderPipeline() override;
protected:
RenderPipeline();
private:
};
} // namespace skgpu
#endif // skgpu_RenderPipeline_DEFINED