fix crash when specifying --source on command line
[rofl0r-gnuboy.git] / fb.h
blobc6b337b2faa5942768760a2163d5e6c36d42dae1
3 #ifndef __FB_H__
4 #define __FB_H__
7 #include "defs.h"
11 struct fb
13 byte *ptr;
14 int w, h;
15 int pelsize;
16 int pitch;
17 int indexed;
18 struct
20 int l, r;
21 } cc[4];
22 int yuv;
23 int enabled;
24 int dirty;
25 int delegate_scaling;
29 extern struct fb fb;
32 #endif