mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
5a7f34bd50
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3898 fc73d0e0-1445-4013-8a0c-d673dee63da5
69 lines
717 B
C
69 lines
717 B
C
#include "quakedef.h"
|
|
|
|
qboolean GLVID_Init(rendererstate_t *info, unsigned char *palette)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void GLVID_DeInit()
|
|
{
|
|
}
|
|
|
|
void GLVID_ShiftPalette(unsigned char *p)
|
|
{
|
|
}
|
|
|
|
void GLVID_SetPalette(unsigned char *palette)
|
|
{
|
|
}
|
|
|
|
void Sys_SendKeyEvents(void)
|
|
{
|
|
}
|
|
|
|
void GLD_BeginDirectRect(int x, int y, qbyte *pbitmap, int width, int height)
|
|
{
|
|
}
|
|
|
|
void GLD_EndDirectRect(int x, int y, int width, int height)
|
|
{
|
|
}
|
|
|
|
void GL_BeginRendering (void)
|
|
{
|
|
}
|
|
|
|
void GL_EndRendering (void)
|
|
{
|
|
}
|
|
|
|
void GL_DoSwap(void)
|
|
{
|
|
}
|
|
|
|
void GLVID_SetCaption(char *text)
|
|
{
|
|
}
|
|
|
|
/*** Input ***/
|
|
|
|
void IN_ReInit(void)
|
|
{
|
|
}
|
|
|
|
void IN_Init(void)
|
|
{
|
|
}
|
|
|
|
void IN_Shutdown(void)
|
|
{
|
|
}
|
|
|
|
void IN_Commands(void)
|
|
{
|
|
}
|
|
|
|
void IN_Move(float *movements, int pnum)
|
|
{
|
|
}
|
|
|