aboutsummaryrefslogtreecommitdiffstats
path: root/include/gl_texture.hpp
blob: 808d86b171717c7afbab4ada39b818f64c437c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef GL_TEXTURE_HPP
#define GL_TEXTURE_HPP

#include <GL/glew.h>

struct GlTexture
{
    GLuint id;
    int width;
    int height;
};

#endif