goatvr1

view src/rtarg.h @ 1:3698f7b31ee6

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 11 Nov 2015 23:57:02 +0200
parents
children
line source
1 #ifndef RTARG_H_
2 #define RTARG_H_
4 struct eye_viewport {
5 int x, y, width, height;
6 };
8 struct render_target {
9 unsigned int fbo;
10 unsigned int color, depth;
11 int width, height;
12 int tex_width, tex_height;
14 struct eye_viewport eyevp[2];
15 };
17 #endif /* RTARG_H_ */