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
5namespace Grindstone::GraphicsAPI {
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}
Definition IndexBuffer.hpp:11