Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
VulkanIndexBuffer.hpp
1#pragma once
2
3#include <Common/Graphics/IndexBuffer.hpp>
4#include <vulkan/vulkan.h>
5
6namespace Grindstone::GraphicsAPI::Vulkan {
8 public:
9 IndexBuffer(const CreateInfo& createInfo);
10 virtual ~IndexBuffer() override;
11 public:
12 VkBuffer GetBuffer() const;
13 bool Is32Bit() const;
14 private:
15 VkBuffer buffer = nullptr;
16 VkDeviceMemory memory = nullptr;
17 bool is32Bit = false;
18 };
19}
Definition IndexBuffer.hpp:11
Definition VulkanIndexBuffer.hpp:7