(Griffin) Take out DONT_HAVE_BITMAPONTS/DONT_HAVE_STATETRACKER for Xbox 1
This commit is contained in:
parent
7b49e072ff
commit
555c5864b8
|
@ -18,11 +18,6 @@
|
||||||
#define HAVE_SHADERS
|
#define HAVE_SHADERS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _XBOX
|
|
||||||
#define DONT_HAVE_BITMAPFONTS
|
|
||||||
#define DONT_HAVE_STATE_TRACKER
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(HAVE_ZLIB) || defined(HAVE_7ZIP)
|
#if defined(HAVE_ZLIB) || defined(HAVE_7ZIP)
|
||||||
#define HAVE_COMPRESSION
|
#define HAVE_COMPRESSION
|
||||||
#endif
|
#endif
|
||||||
|
@ -253,16 +248,14 @@ FONTS
|
||||||
|
|
||||||
#if defined(HAVE_OPENGL) || defined(HAVE_D3D8) || defined(HAVE_D3D9)
|
#if defined(HAVE_OPENGL) || defined(HAVE_D3D8) || defined(HAVE_D3D9)
|
||||||
|
|
||||||
#if defined(HAVE_FREETYPE) || !defined(DONT_HAVE_BITMAPFONTS)
|
#if defined(HAVE_FREETYPE)
|
||||||
#include "../gfx/fonts/fonts.c"
|
#include "../gfx/fonts/fonts.c"
|
||||||
|
|
||||||
#if defined(HAVE_FREETYPE)
|
#if defined(HAVE_FREETYPE)
|
||||||
#include "../gfx/fonts/freetype.c"
|
#include "../gfx/fonts/freetype.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(DONT_HAVE_BITMAPFONTS)
|
|
||||||
#include "../gfx/fonts/bitmapfont.c"
|
#include "../gfx/fonts/bitmapfont.c"
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -368,13 +361,7 @@ INPUT
|
||||||
/*============================================================
|
/*============================================================
|
||||||
STATE TRACKER
|
STATE TRACKER
|
||||||
============================================================ */
|
============================================================ */
|
||||||
#ifdef _XBOX
|
|
||||||
#define DONT_HAVE_STATE_TRACKER
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef DONT_HAVE_STATE_TRACKER
|
|
||||||
#include "../gfx/state_tracker.c"
|
#include "../gfx/state_tracker.c"
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_PYTHON
|
#ifdef HAVE_PYTHON
|
||||||
#include "../gfx/py_state/py_state.c"
|
#include "../gfx/py_state/py_state.c"
|
||||||
|
|
Loading…
Reference in New Issue