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
6
namespace
Grindstone::GraphicsAPI::Vulkan {
7
class
IndexBuffer
:
public
Grindstone::GraphicsAPI::IndexBuffer
{
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
}
Grindstone::GraphicsAPI::IndexBuffer
Definition
IndexBuffer.hpp:11
Grindstone::GraphicsAPI::Vulkan::IndexBuffer
Definition
VulkanIndexBuffer.hpp:7
Grindstone::GraphicsAPI::IndexBuffer::CreateInfo
Definition
IndexBuffer.hpp:13
sources
code
Plugins
GraphicsVulkan
VulkanIndexBuffer.hpp
Generated by
1.12.0