mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-13 14:11:35 +00:00
31 lines
407 B
C
31 lines
407 B
C
|
#include "../ref_soft/r_local.h"
|
||
|
|
||
|
void SWimp_BeginFrame( float camera_separation )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void SWimp_EndFrame (void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
int SWimp_Init( void *hInstance, void *wndProc )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void SWimp_SetPalette( const unsigned char *palette)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void SWimp_Shutdown( void )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
rserr_t SWimp_SetMode( int *pwidth, int *pheight, int mode, qboolean fullscreen )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void SWimp_AppActivate( qboolean active )
|
||
|
{
|
||
|
}
|
||
|
|