mirror of
https://github.com/halpz/re3.git
synced 2024-12-27 18:25:28 +00:00
Merge remote-tracking branch 'origin/master' into miami
This commit is contained in:
commit
86cc86ac12
|
@ -156,9 +156,9 @@ CGame::InitialiseOnceBeforeRW(void)
|
||||||
#ifdef PS2_MATFX
|
#ifdef PS2_MATFX
|
||||||
void ReplaceMatFxCallback();
|
void ReplaceMatFxCallback();
|
||||||
#endif // PS2_MATFX
|
#endif // PS2_MATFX
|
||||||
#ifdef DUAL_PASS_RENDERING
|
#ifdef PS2_ALPHA_TEST
|
||||||
void ReplaceAtomicPipeCallback();
|
void ReplaceAtomicPipeCallback();
|
||||||
#endif // DUAL_PASS_RENDERING
|
#endif // PS2_ALPHA_TEST
|
||||||
#endif // !LIBRW
|
#endif // !LIBRW
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
@ -215,9 +215,9 @@ CGame::InitialiseRenderWare(void)
|
||||||
#ifdef PS2_MATFX
|
#ifdef PS2_MATFX
|
||||||
ReplaceMatFxCallback();
|
ReplaceMatFxCallback();
|
||||||
#endif // PS2_MATFX
|
#endif // PS2_MATFX
|
||||||
#ifdef DUAL_PASS_RENDERING
|
#ifdef PS2_ALPHA_TEST
|
||||||
ReplaceAtomicPipeCallback();
|
ReplaceAtomicPipeCallback();
|
||||||
#endif // DUAL_PASS_RENDERING
|
#endif // PS2_ALPHA_TEST
|
||||||
#endif // LIBRW
|
#endif // LIBRW
|
||||||
|
|
||||||
CFont::Initialise();
|
CFont::Initialise();
|
||||||
|
|
|
@ -214,7 +214,7 @@ enum Config {
|
||||||
#define ASPECT_RATIO_SCALE // Not just makes everything scale with aspect ratio, also adds support for all aspect ratios
|
#define ASPECT_RATIO_SCALE // Not just makes everything scale with aspect ratio, also adds support for all aspect ratios
|
||||||
#define DEFAULT_NATIVE_RESOLUTION // Set default video mode to your native resolution (fixes Windows 10 launch)
|
#define DEFAULT_NATIVE_RESOLUTION // Set default video mode to your native resolution (fixes Windows 10 launch)
|
||||||
#define USE_TXD_CDIMAGE // generate and load textures from txd.img
|
#define USE_TXD_CDIMAGE // generate and load textures from txd.img
|
||||||
#define DUAL_PASS_RENDERING // dual pass rendering from SkyGfx
|
#define PS2_ALPHA_TEST // emulate ps2 alpha test
|
||||||
#define IMPROVED_VIDEOMODE // save and load videomode parameters instead of a magic number
|
#define IMPROVED_VIDEOMODE // save and load videomode parameters instead of a magic number
|
||||||
//#define DISABLE_LOADING_SCREEN // disable the loading screen which vastly improves the loading time
|
//#define DISABLE_LOADING_SCREEN // disable the loading screen which vastly improves the loading time
|
||||||
//#define NO_ISLAND_LOADING // disable loadscreen between islands via loading all island data at once, consumes more memory and CPU
|
//#define NO_ISLAND_LOADING // disable loadscreen between islands via loading all island data at once, consumes more memory and CPU
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
RtCharset *debugCharset;
|
RtCharset *debugCharset;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DUAL_PASS_RENDERING
|
#ifdef PS2_ALPHA_TEST
|
||||||
bool gPS2alphaTest = true;
|
bool gPS2alphaTest = true;
|
||||||
#else
|
#else
|
||||||
bool gPS2alphaTest = false;
|
bool gPS2alphaTest = false;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#define WITHD3D
|
#define WITHD3D
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#ifdef DUAL_PASS_RENDERING
|
#ifdef PS2_ALPHA_TEST
|
||||||
#include "rwcore.h"
|
#include "rwcore.h"
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
@ -242,6 +242,6 @@ ReplaceAtomicPipeCallback()
|
||||||
_rxD3D8DualPassRenderCallback);
|
_rxD3D8DualPassRenderCallback);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // DUAL_PASS_RENDERING
|
#endif // PS2_ALPHA_TEST
|
||||||
|
|
||||||
#endif // !LIBRW
|
#endif // !LIBRW
|
Loading…
Reference in a new issue