Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
GLIndexBuffer.hpp
1#pragma once
2
3#include <stdint.h>
4
5#include <Common/Graphics/DLLDefs.hpp>
6#include <Common/Graphics/IndexBuffer.hpp>
7
8namespace Grindstone::GraphicsAPI::OpenGL {
10 public:
11 IndexBuffer(const CreateInfo& createInfo);
13
14 void Bind();
15
16 protected:
17 GLuint buffer;
18
19 };
20}
Definition IndexBuffer.hpp:11
Definition GLIndexBuffer.hpp:9