summaryrefslogtreecommitdiff
path: root/include/state.h
diff options
context:
space:
mode:
authorjussi2023-10-27 22:53:56 +0300
committerjussi2023-10-27 22:53:56 +0300
commit7ef87c8e2f7824a8abfe715aef23b4a6d2e4db78 (patch)
treea1a669e8af511c79657cbad1de69419c86212127 /include/state.h
parent4cb4edcaf0d8b08d888a60d1a5d36f6e3690a4df (diff)
downloadreilua-enhanced-7ef87c8e2f7824a8abfe715aef23b4a6d2e4db78.tar.gz
reilua-enhanced-7ef87c8e2f7824a8abfe715aef23b4a6d2e4db78.tar.bz2
reilua-enhanced-7ef87c8e2f7824a8abfe715aef23b4a6d2e4db78.zip
New object types for Image, Texture, RenderTexture, Camera2D, Camera3D and Shader.
Diffstat (limited to 'include/state.h')
-rw-r--r--include/state.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/state.h b/include/state.h
index 725cb6e..a0b17fa 100644
--- a/include/state.h
+++ b/include/state.h
@@ -8,13 +8,6 @@ typedef struct {
} ModelAnimations;
typedef struct {
- int type;
- int texRef; /* TextureReference. */
- Texture texture;
- RenderTexture renderTexture;
-} ReiTexture;
-
-typedef struct {
char *exePath;
bool hasWindow;
bool run;
@@ -23,14 +16,6 @@ typedef struct {
size_t guiFont;
int logLevelInvalid;
/* Resources. */
- /* Images. */
- Image **images;
- size_t imageCount;
- size_t imageAlloc;
- /* Textures. */
- ReiTexture **textures;
- size_t textureCount;
- size_t textureAlloc;
/* Fonts. */
Font **fonts;
size_t fontCount;
@@ -47,14 +32,6 @@ typedef struct {
Music **musics;
size_t musicCount;
size_t musicAlloc;
- /* Camera2D's. */
- Camera2D **camera2Ds;
- size_t camera2DCount;
- size_t camera2DAlloc;
- /* Camera3D's. */
- Camera3D **camera3Ds;
- size_t camera3DCount;
- size_t camera3DAlloc;
/* Meshes. */
Mesh **meshes;
size_t meshCount;
@@ -71,10 +48,6 @@ typedef struct {
ModelAnimations **animations;
size_t animationCount;
size_t animationAlloc;
- /* Shaders. */
- Shader **shaders;
- size_t shaderCount;
- size_t shaderAlloc;
/* Lights. */
Light **lights;
size_t lightCount;