TRX/lib/glrage_gl/Texture.hpp

23 lines
294 B
C++
Raw Normal View History

2021-11-12 20:03:04 +01:00
#pragma once
#include "Object.hpp"
#include "gl_core_3_3.h"
namespace glrage {
namespace gl {
class Texture : public Object
{
public:
Texture(GLenum target);
~Texture();
void bind();
GLenum target();
private:
GLenum m_target;
};
} // namespace gl
} // namespace glrage