c9e586e624b1a5bb51f9a25209cd4f82e49eb1e2
[demo_prior] / src / post.h
1 #ifndef POST_H_
2 #define POST_H_
3
4 #include "texture.h"
5
6 enum {
7         POST_OLDFIG,
8
9         MAX_POST_SDR
10 };
11 extern unsigned int post_sdr[MAX_POST_SDR];
12
13 extern struct texture post_fbtex[2];
14 extern int post_fbtex_cur;
15 extern unsigned int post_fbo[2];
16
17 int post_init(void);
18 void post_cleanup(void);
19 void post_reshape(int x, int y);
20
21 void overlay(unsigned int tex, float aspect, float alpha);
22 void overlay_tex(struct texture *tex, float alpha);
23
24 #endif  /* POST_H_ */