rayzor

view src/rayzor.h @ 11:fe94d9e986ae

optimized 16bpp swap_buffers
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 10 Apr 2014 08:42:33 +0300
parents
children a9a948809c6f
line source
1 #ifndef RAYZOR_H_
2 #define RAYZOR_H_
4 // global framebuffer (back buffer)
5 extern uint32_t *fb_pixels;
6 extern int fb_width, fb_height;
7 extern int fb_bpp;
9 class Scene;
10 extern Scene *scene;
12 void quit_app();
14 #endif /* RAYZOR_H_ */