Grindstone Game Engine
v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
IndexBuffer.hpp
1
#pragma once
2
3
#include <stdint.h>
4
5
namespace
Grindstone::GraphicsAPI {
11
class
IndexBuffer
{
12
public
:
13
struct
CreateInfo
{
14
const
char
* debugName =
nullptr
;
15
const
void
* content =
nullptr
;
16
uint32_t size = 0;
17
uint32_t count = 0;
18
bool
is32Bit =
false
;
19
};
20
21
virtual
~IndexBuffer
() {};
22
};
23
}
Grindstone::GraphicsAPI::IndexBuffer
Definition
IndexBuffer.hpp:11
Grindstone::GraphicsAPI::IndexBuffer::CreateInfo
Definition
IndexBuffer.hpp:13
sources
code
Common
Graphics
IndexBuffer.hpp
Generated by
1.12.0