rayzor

view src/rayzor.h @ 14:a9a948809c6f

starting the renderer screen, plus misc stuff
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 13 Apr 2014 08:06:21 +0300
parents 70e332156d02
children
line source
1 #ifndef RAYZOR_H_
2 #define RAYZOR_H_
4 #include "inttypes.h"
6 // global framebuffer (back buffer)
7 extern uint32_t *fb_pixels;
8 extern int fb_width, fb_height;
9 extern int fb_bpp;
11 class Scene;
12 extern Scene *scene;
14 void quit_app();
16 #endif /* RAYZOR_H_ */