Graphics/RenderTexture: Remove no longer used config

This commit is contained in:
SirLynix
2023-11-20 23:12:20 +01:00
parent 448cf3b86e
commit 7991071e41
3 changed files with 1 additions and 8 deletions

View File

@@ -20,7 +20,6 @@ namespace Nz
{
public:
inline RenderTexture(std::shared_ptr<Texture> targetTexture);
RenderTexture(std::shared_ptr<Texture> targetTexture, PipelineStage targetPipelineStage, MemoryAccessFlags targetMemoryFlags, TextureLayout targetLayout);
RenderTexture(const RenderTexture&) = delete;
RenderTexture(RenderTexture&&) = delete;
~RenderTexture() = default;
@@ -35,9 +34,6 @@ namespace Nz
private:
std::shared_ptr<Texture> m_targetTexture;
MemoryAccessFlags m_targetMemoryFlags;
PipelineStage m_targetPipelineStage;
TextureLayout m_targetLayout;
Vector2ui m_textureSize;
};
}