first half-assed attempt at old wahsed-out post effect failed
[demo_prior] / src / post.h
index d61dc5d..c9e586e 100644 (file)
@@ -1,7 +1,22 @@
 #ifndef POST_H_
 #define POST_H_
 
-struct texture;
+#include "texture.h"
+
+enum {
+       POST_OLDFIG,
+
+       MAX_POST_SDR
+};
+extern unsigned int post_sdr[MAX_POST_SDR];
+
+extern struct texture post_fbtex[2];
+extern int post_fbtex_cur;
+extern unsigned int post_fbo[2];
+
+int post_init(void);
+void post_cleanup(void);
+void post_reshape(int x, int y);
 
 void overlay(unsigned int tex, float aspect, float alpha);
 void overlay_tex(struct texture *tex, float alpha);