mirror of
https://github.com/halpz/re3.git
synced 2025-07-08 23:28:53 +00:00
Merge branch 'master' into miami
# Conflicts: # premake5.lua # sdk/rwsdk/include/d3d8/baaplylt.c # sdk/rwsdk/include/d3d8/rpstereo.h # sdk/rwsdk/include/d3d8/rpstereo.rpe # sdk/rwsdk/include/d3d8/rtintel.h # sdk/rwsdk/include/d3d8/rtintel.rpe # src/audio/oal/stream.cpp
This commit is contained in:
62
sdk/rwsdk/include/d3d8/rpmipkl.h
Normal file
62
sdk/rwsdk/include/d3d8/rpmipkl.h
Normal file
@ -0,0 +1,62 @@
|
||||
/**
|
||||
* PS2 Mipmap K&L plugin for Renderware.
|
||||
*/
|
||||
|
||||
#ifndef RPMIPMAPKLPLUGIN_H
|
||||
#define RPMIPMAPKLPLUGIN_H
|
||||
|
||||
/**
|
||||
* \defgroup rpmipkl RpMipmapKL
|
||||
* \ingroup mipmapping
|
||||
*
|
||||
* PlayStation 2 / MipMap KL Value Plugin for RenderWare Graphics.
|
||||
*/
|
||||
|
||||
#include <rwcore.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
#if (defined(SKY2_DRVMODEL_H)) || (defined(NULLSKY_DRVMODEL_H))
|
||||
|
||||
#define RpMipmapKLTextureSetDefaultK RpSkyTextureSetDefaultMipmapK
|
||||
|
||||
#define RpMipmapKLTextureSetDefaultL RpSkyTextureSetDefaultMipmapL
|
||||
|
||||
#define RpMipmapKLTextureGetDefaultK RpSkyTextureGetDefaultMipmapK
|
||||
|
||||
#define RpMipmapKLTextureGetDefaultL RpSkyTextureGetDefaultMipmapL
|
||||
|
||||
#define RpMipmapKLTextureSetK RpSkyTextureSetMipmapK
|
||||
|
||||
#define RpMipmapKLTextureSetL RpSkyTextureSetMipmapL
|
||||
|
||||
#define RpMipmapKLTextureGetK RpSkyTextureGetMipmapK
|
||||
|
||||
#define RpMipmapKLTextureGetL RpSkyTextureGetMipmapL
|
||||
|
||||
#define RpMipmapKLPluginAttach() (TRUE)
|
||||
|
||||
#else /* (defined(SKY2_DRVMODEL_H)) || (defined(NULLSKY_DRVMODEL_H)) */
|
||||
|
||||
extern RwReal RpMipmapKLTextureSetDefaultK(RwReal val);
|
||||
extern RwUInt32 RpMipmapKLTextureSetDefaultL(RwUInt32 val);
|
||||
extern RwReal RpMipmapKLTextureGetDefaultK(void);
|
||||
extern RwUInt32 RpMipmapKLTextureGetDefaultL(void);
|
||||
|
||||
extern RwTexture *RpMipmapKLTextureSetK(RwTexture *tex, RwReal val);
|
||||
extern RwTexture *RpMipmapKLTextureSetL(RwTexture *tex, RwUInt32 val);
|
||||
extern RwReal RpMipmapKLTextureGetK(RwTexture *tex);
|
||||
extern RwUInt32 RpMipmapKLTextureGetL(RwTexture *tex);
|
||||
|
||||
extern RwBool RpMipmapKLPluginAttach(void);
|
||||
|
||||
#endif /* (defined(SKY2_DRVMODEL_H)) || (defined(NULLSKY_DRVMODEL_H)) */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* RPMIPMAPKLPLUGIN_H */
|
Reference in New Issue
Block a user