Graphics/FrameGraph: Fix parameter type

This commit is contained in:
SirLynix
2023-09-08 09:02:02 +02:00
committed by Jérôme Leclercq
parent 3aa72029df
commit 413dd2ce71
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ namespace Nz
~FrameGraph() = default;
inline std::size_t AddAttachment(FramePassAttachment attachment);
inline std::size_t AddAttachmentArray(FramePassAttachment attachment, std::size_t layerCount);
inline std::size_t AddAttachmentArray(FramePassAttachment attachment, unsigned int layerCount);
inline std::size_t AddAttachmentArrayLayer(std::size_t attachmentId, std::size_t layerIndex);
inline std::size_t AddAttachmentCube(FramePassAttachment attachment);
inline std::size_t AddAttachmentCubeFace(std::size_t attachmentId, CubemapFace face);