summaryrefslogtreecommitdiffstats
path: root/sdk/rwsdk/include/d3d8/rttilerd.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/rttilerd.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/rttilerd.h')
-rw-r--r--sdk/rwsdk/include/d3d8/rttilerd.h70
1 files changed, 0 insertions, 70 deletions
diff --git a/sdk/rwsdk/include/d3d8/rttilerd.h b/sdk/rwsdk/include/d3d8/rttilerd.h
deleted file mode 100644
index 7cb8f887..00000000
--- a/sdk/rwsdk/include/d3d8/rttilerd.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/***************************************************************************
- * *
- * Module : rttilerd.h *
- * *
- * Purpose : Tile renderer *
- * *
- **************************************************************************/
-
-#ifndef RTTILERD_H
-#define RTTILERD_H
-
-/**
- * \defgroup rttilerender RtTileRender
- * \ingroup cameras
- *
- * Tile renderer - e.g. grabbing screen shots - Toolkit for RenderWare.
- */
-
-/****************************************************************************
- Includes
- */
-#include "rwcore.h"
-
-#include "rpcriter.h"
-
-/****************************************************************************
- Defines
- */
-
-/****************************************************************************
- Global Types
- */
-
-typedef RwCamera * (*RtTileRenderCallBack)(RwCamera *camera,
- RwInt32 x, RwInt32 y,
- void *pData);
-
-typedef RwImage * (*RtTileArchiveCallBack)(RwImage *image,
- RwInt32 x, RwInt32 y,
- void *pData);
-
-/****************************************************************************
- Function prototypes
- */
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif /* __cplusplus */
-
-/* Tile renderer */
-
-extern RwCamera *
-RtTileRender(RwCamera *camera,
- RwInt32 imageWidth, RwInt32 imageHeight,
- RwInt32 tileWidth, RwInt32 tileHeight,
- RtTileRenderCallBack renderCallBack,
- RtTileArchiveCallBack archiveCallBack,
- void *pData);
-
-extern RwImage *
-RtTileDefaultArchive(RwImage *image,
- RwInt32 x, RwInt32 y, void *pData);
-
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* RTTILERD_H */