mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-11 07:01:43 +00:00
9cd988a836
Fixed up cl_indepphysics. Sending is fully independent, bar sync points. Fixed so #if 0 works in qc code. Fixed up error conditions in qclib when features are not supported. The webpage generator will now refcount properly. Fixed error conditions when using glsl shaders. If MULTITHREAD is defined, r_loadlit will not light inside a separate thread. We now generate VBOs for bsp objects. Shaders/rtlights don't use them yet. Fixed up MVD/multiview playback a bit. It now looks like it works! (cl_hightrack will no longer track the same person in all views). Fixed error conditions when attempting to download versioned csprogs. Reduced the number of places that a q3-style marked up string is expanded. I think there are a couple places left still though. Approximated ezquake colour codes. Memory mapped read file access in win32, where we can. Not sure about this. Lets see how things pan out. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3195 fc73d0e0-1445-4013-8a0c-d673dee63da5
96 lines
1.1 KiB
C
96 lines
1.1 KiB
C
#include "quakedef.h"
|
|
|
|
#ifdef IN_XFLIP
|
|
cvar_t in_xflip = {"in_xflip", "0"};
|
|
#endif
|
|
|
|
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 (int *x, int *y, int *width, int *height)
|
|
{
|
|
*x = *y = 0;
|
|
*width = 640;
|
|
*height = 480;
|
|
}
|
|
|
|
void GL_EndRendering (void)
|
|
{
|
|
}
|
|
|
|
void GL_DoSwap(void)
|
|
{
|
|
}
|
|
|
|
void GLVID_LockBuffer (void)
|
|
{
|
|
}
|
|
|
|
void GLVID_UnlockBuffer (void)
|
|
{
|
|
}
|
|
|
|
int GLVID_ForceUnlockedAndReturnState (void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void GLVID_ForceLockState (int lk)
|
|
{
|
|
}
|
|
|
|
void GLVID_SetCaption(char *text)
|
|
{
|
|
}
|
|
|
|
/*** Input ***/
|
|
|
|
void IN_ReInit(void)
|
|
{
|
|
}
|
|
|
|
void IN_Init(void)
|
|
{
|
|
#ifdef IN_XFLIP
|
|
Cvar_Register (&in_xflip, "Input Controls");
|
|
#endif
|
|
}
|
|
|
|
void IN_Shutdown(void)
|
|
{
|
|
}
|
|
|
|
void IN_Commands(void)
|
|
{
|
|
}
|
|
|
|
void IN_Move(float *movements, int pnum)
|
|
{
|
|
}
|
|
|