X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Frbench.h;h=c48d6f1d8a6b958feb98ef5c8990560632cfde87;hb=80662def0bf707ae09de2d48d50156ccd84a24e3;hp=551b93e282e4a801919809c378e0d899f1934ed2;hpb=baf481c2dc52bc0b5f54acb555ddd7701daf05cc;p=retrobench diff --git a/src/rbench.h b/src/rbench.h index 551b93e..c48d6f1 100644 --- a/src/rbench.h +++ b/src/rbench.h @@ -6,6 +6,14 @@ struct options { }; extern struct options opt; +extern int fb_width, fb_height, fb_bpp, fb_pitch; +extern int fb_rshift, fb_gshift, fb_bshift; +extern unsigned int fb_rmask, fb_gmask, fb_bmask; +extern void *framebuf; +extern unsigned int time_msec; + +int init(void); +void cleanup(void); void redraw(void); void key_event(int key, int press);