diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-29 02:05:47 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-29 02:05:47 (GMT) |
commit | 846970462afbe91e3c06f57c45e095a625aec0d3 (patch) | |
tree | bcd49faa6ced22e7046bf79c6024f26bb0d4b7e5 /tests/fboutils.h | |
parent | c6e5e84eec401096451f14e9e853e33c3aa88853 (diff) |
More refactoring of offscreen rendering
Diffstat (limited to 'tests/fboutils.h')
-rw-r--r-- | tests/fboutils.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/fboutils.h b/tests/fboutils.h new file mode 100644 index 0000000..0e5c32e --- /dev/null +++ b/tests/fboutils.h @@ -0,0 +1,10 @@ +#ifndef FBOUTILS_H_ +#define FBOUTILS_H_ + +#include "system-gl.h" + +GLuint fbo_create(GLsizei width, GLsizei height); +void fbo_bind(GLuint fbo); +void fbo_unbind(); + +#endif |