X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fvideo.h;h=8dd3364e8aee13a0fc5d7a1d5432b4a8acabad55;hb=4beff2f35f649bb0befa58c8a89fdd702b3c9b4f;hp=6a67bcea62f818ee8af425c55c6b4238d9936a03;hpb=2ae315f25e623cc8279d3c9012a3a166d86684c2;p=virtualjaguar diff --git a/src/video.h b/src/video.h index 6a67bce..8dd3364 100644 --- a/src/video.h +++ b/src/video.h @@ -11,11 +11,15 @@ #define VIRTUAL_SCREEN_HEIGHT_NTSC 240 #define VIRTUAL_SCREEN_HEIGHT_PAL 256 -bool InitVideo(void); +bool VideoInit(void); void VideoDone(void); void RenderBackbuffer(void); void ResizeScreen(uint32 width, uint32 height); uint32 GetSDLScreenWidthInPixels(void); void ToggleFullscreen(void); +// Exported vars + +extern uint32 * backbuffer; + #endif // __VIDEO_H__