mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
d80342e0a8
Turns out he has to compile without -Werror.
26 lines
602 B
C
26 lines
602 B
C
#ifndef __vid_internal_h
|
|
#define __vid_internal_h
|
|
|
|
#include "QF/vid.h"
|
|
#include "QF/plugin/vid_render.h"
|
|
|
|
extern struct cvar_s *vid_fullscreen;
|
|
extern struct cvar_s *vid_system_gamma;
|
|
extern struct cvar_s *vid_gamma;
|
|
|
|
extern unsigned short sw32_8to16table[256];
|
|
|
|
void VID_GetWindowSize (int def_w, int def_h);
|
|
|
|
void VID_InitGamma (unsigned char *);
|
|
qboolean VID_SetGamma (double);
|
|
void VID_UpdateGamma (struct cvar_s *);
|
|
|
|
void VID_Update (vrect_t *rects);
|
|
void VID_LockBuffer (void);
|
|
void VID_UnlockBuffer (void);
|
|
void VID_InitBuffers (void);
|
|
void VID_MakeColormaps (void);
|
|
|
|
|
|
#endif//__vid_internal_h
|