mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 13:10:34 +00:00
Add the missing function required for -win.
They're just stubs for now, but nq-win.exe and qw-client-win.exe build. I'm 99.999% certain they won't work, though :P
This commit is contained in:
parent
4a387c9c36
commit
4d6fe3694d
1 changed files with 16 additions and 1 deletions
|
@ -470,7 +470,6 @@ VID_Init (byte *palette, byte *colormap)
|
||||||
|
|
||||||
vid_fullscreen = Cvar_Get ("vid_fullscreen", "0", CVAR_ROM | CVAR_ARCHIVE,
|
vid_fullscreen = Cvar_Get ("vid_fullscreen", "0", CVAR_ROM | CVAR_ARCHIVE,
|
||||||
NULL, "Run WGL client at fullscreen");
|
NULL, "Run WGL client at fullscreen");
|
||||||
GLF_Init ();
|
|
||||||
|
|
||||||
memset (&win_gdevmode, 0, sizeof (win_gdevmode));
|
memset (&win_gdevmode, 0, sizeof (win_gdevmode));
|
||||||
|
|
||||||
|
@ -618,6 +617,22 @@ VID_SetGamma (double gamma)
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
VID_LockBuffer (void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
VID_UnlockBuffer (void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
VID_Update (vrect_t *rects)
|
||||||
|
{
|
||||||
|
//FIXME sw
|
||||||
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
static void
|
static void
|
||||||
VID_SaveGamma (void)
|
VID_SaveGamma (void)
|
||||||
|
|
Loading…
Reference in a new issue