goat3dgfx

view src/gfxutil.h @ 24:dc5918c62a64

broken: converting to resman
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Mar 2014 22:04:29 +0200
parents 7d6b667821cf
children
line source
1 #ifndef GFXUTIL_H_
2 #define GFXUTIL_H_
4 #include <vmath/vmath.h>
6 namespace goatgfx {
8 class Texture;
9 class ShaderProg;
11 void draw_rect(const Vector3 &v1, const Vector3 &v2, Texture *tex = 0, ShaderProg *sdr = 0);
13 } // namespace goatgfx
15 #endif // GFXUTIL_H_