13 lines
174 B
C
13 lines
174 B
C
|
#ifndef __GLDRAWHELPER_H
|
||
|
#define __GLDRAWHELPER_H
|
||
|
|
||
|
#include <SDL.h>
|
||
|
#include <SDL_opengl.h>
|
||
|
|
||
|
#include "glrect.h"
|
||
|
|
||
|
void GLDrawSDLRect(SDL_Rect *rect, GLRect *tex=0);
|
||
|
|
||
|
|
||
|
#endif
|