mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-10 14:20:38 +00:00
Whitespace, and header sort.
This commit is contained in:
parent
68dfbd6729
commit
9099a7175e
1 changed files with 10 additions and 10 deletions
|
@ -36,28 +36,27 @@
|
||||||
#if defined(_WIN32) && !defined(__GNUC__)
|
#if defined(_WIN32) && !defined(__GNUC__)
|
||||||
// disable data conversion warnings
|
// disable data conversion warnings
|
||||||
// FIXME: move that somewhere else -- yan
|
// FIXME: move that somewhere else -- yan
|
||||||
#pragma warning(disable : 4244) // MIPS
|
# pragma warning(disable : 4244) // MIPS
|
||||||
#pragma warning(disable : 4136) // X86
|
# pragma warning(disable : 4136) // X86
|
||||||
#pragma warning(disable : 4051) // ALPHA
|
# pragma warning(disable : 4051) // ALPHA
|
||||||
#pragma warning(disable : 4305) // thousands of double to float truncation warnings
|
# pragma warning(disable : 4305) // thousands of double to float truncation warnings
|
||||||
|
# include <windows.h>
|
||||||
#include <windows.h>
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
|
|
||||||
|
#include "client.h"
|
||||||
|
#include "cvar.h"
|
||||||
#include "model.h"
|
#include "model.h"
|
||||||
#include "render.h"
|
#include "render.h"
|
||||||
#include "cvar.h"
|
|
||||||
#include "wad.h"
|
#include "wad.h"
|
||||||
#include "client.h"
|
|
||||||
|
|
||||||
#ifndef GL_BGR
|
#ifndef GL_BGR
|
||||||
#define GL_BGR 0x80E0
|
# define GL_BGR 0x80E0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef GL_BGRA
|
#ifndef GL_BGRA
|
||||||
#define GL_BGRA 0x80E1
|
# define GL_BGRA 0x80E1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef GLAPIENTRY
|
#ifndef GLAPIENTRY
|
||||||
|
@ -85,6 +84,7 @@ extern DELTEXFUNCPTR delTexFunc;
|
||||||
extern TEXSUBIMAGEPTR TexSubImage2DFunc;
|
extern TEXSUBIMAGEPTR TexSubImage2DFunc;
|
||||||
|
|
||||||
extern int texture_extension_number;
|
extern int texture_extension_number;
|
||||||
|
extern int texture_mode;
|
||||||
|
|
||||||
extern float gldepthmin, gldepthmax;
|
extern float gldepthmin, gldepthmax;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue