summaryrefslogtreecommitdiffstats
path: root/sdk/rwsdk/include/d3d8/rpmipkl.h
diff options
context:
space:
mode:
Diffstat (limited to 'sdk/rwsdk/include/d3d8/rpmipkl.h')
-rw-r--r--sdk/rwsdk/include/d3d8/rpmipkl.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/sdk/rwsdk/include/d3d8/rpmipkl.h b/sdk/rwsdk/include/d3d8/rpmipkl.h
new file mode 100644
index 00000000..5b8f7e51
--- /dev/null
+++ b/sdk/rwsdk/include/d3d8/rpmipkl.h
@@ -0,0 +1,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 */