Fixed some little errors with the drawing functions.
[luagame.git] / gl_surface.h
blobb9df934593ababab346b66de7181026a51e92674
1 /*
2 Copyright (c)2008 - Brett Lajzer
4 See LICENSE for license information.
5 */
7 class GLSurface {
8 public:
9 GLSurface();
10 GLSurface(GLuint t, unsigned int width, unsigned int height) : texture(t), w(width), h(height){};
12 GLuint texture;
13 unsigned int w;
14 unsigned int h;