3#include "spark/render/IndexBuffer.h"
4#include "spark/render/vk/Export.h"
6namespace spark::render::vk
27 [[nodiscard]] std::size_t elementSize()
const noexcept override;
30 [[nodiscard]]
unsigned binding()
const noexcept override;
33 [[nodiscard]] BufferType type()
const noexcept override;
36 [[nodiscard]] IndexType indexType()
const noexcept override;
40 std::unique_ptr<Impl> m_impl;
Describes the layout of an index buffer.
Definition IndexBuffer.h:24
Implements IIndexBufferLayout for Vulkan.
Definition VulkanIndexBufferLayout.h:12
Definition VulkanIndexBufferLayout.cpp:6