mirror of
https://github.com/deater/tb1.git
synced 2024-12-23 04:29:42 +00:00
137d2b45fd
I'm merging all the the tom bombem projects into one git tree
15 lines
746 B
C
15 lines
746 B
C
/* The SDL hooks for the Super VMW graphics library */
|
|
|
|
void *SDL_setupGraphics(int *xsize,int *ysize,int *bpp,int fullscreen,
|
|
int verbose);
|
|
void SDL_flushPalette(vmwSVMWGraphState *state);
|
|
void SDL_NoScale32bpp_BlitMem(vmwSVMWGraphState *target, vmwVisual *source);
|
|
void SDL_Double32bpp_BlitMem(vmwSVMWGraphState *target_p, vmwVisual *source);
|
|
void SDL_NoScale16bpp_BlitMem(vmwSVMWGraphState *target, vmwVisual *source);
|
|
void SDL_Double16bpp_BlitMem(vmwSVMWGraphState *target_p, vmwVisual *source);
|
|
void SDL_NoScale8bpp_BlitMem(vmwSVMWGraphState *target, vmwVisual *source);
|
|
void SDL_Double8bpp_BlitMem(vmwSVMWGraphState *target, vmwVisual *source);
|
|
void SDL_clearKeyboardBuffer();
|
|
int SDL_getInput();
|
|
void SDL_closeGraphics();
|