Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
GLTexture.hpp
1#pragma once
2
3#include <vector>
4#include <GL/gl3w.h>
5
6#include <Common/Graphics/Texture.hpp>
7
8namespace Grindstone::GraphicsAPI::OpenGL {
10 public:
11 Texture(const CreateInfo& ci);
12 Texture(const CubemapCreateInfo& ci);
13 virtual void RecreateTexture(const CreateInfo& createInfo) override;
14 void CreateTexture(const CreateInfo& createInfo);
15 void Bind(int i);
16
17 virtual unsigned int GetTexture() const;
18
19 ~Texture();
20
21 protected:
22 GLuint textureHandle;
23 bool isCubemap;
24
25 };
26}
Definition Texture.hpp:40