2008-02-09 13:43:23 +01:00
|
|
|
#ifndef __GLDRAWHELPER_H
|
|
|
|
#define __GLDRAWHELPER_H
|
|
|
|
|
|
|
|
#include <SDL.h>
|
|
|
|
#include <SDL_opengl.h>
|
|
|
|
|
2008-08-10 17:14:54 +02:00
|
|
|
#include "rect.h"
|
2008-02-09 13:43:23 +01:00
|
|
|
|
2008-08-10 17:14:54 +02:00
|
|
|
namespace segl {
|
2008-02-09 13:43:23 +01:00
|
|
|
|
2008-08-10 17:14:54 +02:00
|
|
|
void GLDrawSDLRect(SDL_Rect *rect, Rect *tex=0);
|
|
|
|
|
|
|
|
} // namespace segl
|
2008-02-09 13:43:23 +01:00
|
|
|
|
|
|
|
#endif
|