TazGraph Project v0.1.0
Loading...
Searching...
No Matches
GLTexture.h
1#pragma once
2
3#include <GL/glew.h>
4
5struct GLTexture {
6 GLuint id;
7 int width;
8 int height;
9};
Definition GLTexture.h:5