summaryrefslogtreecommitdiffstats
path: root/sdk/rwsdk/include/d3d8/rplodatm.h
diff options
context:
space:
mode:
authorFilip Gawin <filip.gawin@zoho.com>2020-12-29 18:59:40 +0100
committerFilip Gawin <filip.gawin@zoho.com>2020-12-29 18:59:40 +0100
commita73f5340a2d12537437479317bdf351715991c12 (patch)
treea971d86ad2f88dbd7503bf2186080c72221d82ca /sdk/rwsdk/include/d3d8/rplodatm.h
parentMore menu error sound fix (diff)
downloadre3-a73f5340a2d12537437479317bdf351715991c12.tar
re3-a73f5340a2d12537437479317bdf351715991c12.tar.gz
re3-a73f5340a2d12537437479317bdf351715991c12.tar.bz2
re3-a73f5340a2d12537437479317bdf351715991c12.tar.lz
re3-a73f5340a2d12537437479317bdf351715991c12.tar.xz
re3-a73f5340a2d12537437479317bdf351715991c12.tar.zst
re3-a73f5340a2d12537437479317bdf351715991c12.zip
Diffstat (limited to 'sdk/rwsdk/include/d3d8/rplodatm.h')
-rw-r--r--sdk/rwsdk/include/d3d8/rplodatm.h134
1 files changed, 0 insertions, 134 deletions
diff --git a/sdk/rwsdk/include/d3d8/rplodatm.h b/sdk/rwsdk/include/d3d8/rplodatm.h
deleted file mode 100644
index 4e9c8648..00000000
--- a/sdk/rwsdk/include/d3d8/rplodatm.h
+++ /dev/null
@@ -1,134 +0,0 @@
-
-/******************************************
- * *
- * RenderWare(TM) Graphics Library *
- * *
- ******************************************/
-
-/*
- * This file is a product of Criterion Software Ltd.
- *
- * This file is provided as is with no warranties of any kind and is
- * provided without any obligation on Criterion Software Ltd.
- * or Canon Inc. to assist in its use or modification.
- *
- * Criterion Software Ltd. and Canon Inc. will not, under any
- * circumstances, be liable for any lost revenue or other damages
- * arising from the use of this file.
- *
- * Copyright (c) 1998. Criterion Software Ltd.
- * All Rights Reserved.
- */
-
-/***************************************************************************
- * *
- * Module : rplodatm.h *
- * *
- * Purpose : LODATM Geometry *
- * *
- **************************************************************************/
-
-#ifndef RPLODATM_H
-#define RPLODATM_H
-
-
-/**
- * \defgroup rplodatm RpLODAtomic
- * \ingroup scenemanagement
- *
- * Level of Detail Management Plugin for RenderWare Graphics.
- */
-
-/****************************************************************************
- Includes
- */
-
-#include "rwcore.h"
-#include "rpworld.h"
-
-#include "rpcriter.h" /* Note: each vendor can choose their own method for
- * allocation of unique ID's. This file defines
- * the ID's used by Criterion.
- */
-#include "rplodatm.rpe" /* automatically generated header file */
-
-/****************************************************************************
- Defines
- */
-#define RPLODATOMICMAXLOD 10
-
-
-/****************************************************************************
- Type defs
- */
-typedef RwInt32 (*RpLODAtomicLODCallBack)( RpAtomic *atomic );
-
-/****************************************************************************
- Function prototypes
- */
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif /* __cplusplus */
-
- extern void
- RpLODAtomicCacheSetFreeListCreateParams( RwInt32 blockSize, RwInt32 numBlocksToPrealloc );
-
- extern RwBool
- RpLODAtomicPluginAttach( void );
-
- extern RpAtomic *
- RpLODAtomicSetGeometry(
- RpAtomic *atomic, RwInt32 lodIdx, RpGeometry *geometry );
-
- extern RpGeometry *
- RpLODAtomicGetGeometry(
- RpAtomic *atomic, RwInt32 lodIdx );
-
- extern RpAtomic *
- RpLODAtomicSetCurrentLOD(
- RpAtomic *atomic, RwInt32 lodIdx );
-
- extern RwInt32
- RpLODAtomicGetCurrentLOD(
- RpAtomic *atomic );
-
- extern RpAtomic *
- RpLODAtomicSetRange(
- RpAtomic *atomic, RwReal farRange );
-
- extern RwReal
- RpLODAtomicGetRange(
- RpAtomic *atomic );
-
- extern void
- RpLODAtomicSetCamera(
- RwCamera *camera );
-
- extern RpAtomic *
- RpLODAtomicSetLODCallBack(
- RpAtomic *atomic, RpLODAtomicLODCallBack callback );
-
- extern RpAtomic *
- RpLODAtomicSelectLOD(
- RpAtomic *atomic );
-
- extern RpAtomic *
- RpLODAtomicForAllLODGeometries(
- RpAtomic *atomic, RpGeometryCallBack callback, void *pData );
-
- extern RpAtomic *
- RpLODAtomicHookRender(
- RpAtomic *atomic );
-
- extern RpAtomic *
- RpLODAtomicUnHookRender(
- RpAtomic *atomic );
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* RPLODATM_H */
-