blob: 5b8f7e51d4ac02409d01b5aa957ada42f3dd0965 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/**
* PS2 Mipmap K&L plugin for Renderware.
*/
#ifndef RPMIPMAPKLPLUGIN_H
#define RPMIPMAPKLPLUGIN_H
/**
* \defgroup rpmipkl RpMipmapKL
* \ingroup rpplugin
*
* PS2/MipMap KL Value Plugin for RenderWare Graphics.
*/
#include <rwcore.h>
#ifdef __cplusplus
extern "C"
{
#endif
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);
#ifdef __cplusplus
}
#endif
#endif /* RPMIPMAPKLPLUGIN_H */
|