From 7ef87c8e2f7824a8abfe715aef23b4a6d2e4db78 Mon Sep 17 00:00:00 2001 From: jussi Date: Fri, 27 Oct 2023 22:53:56 +0300 Subject: New object types for Image, Texture, RenderTexture, Camera2D, Camera3D and Shader. --- include/state.h | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'include/state.h') diff --git a/include/state.h b/include/state.h index 725cb6e..a0b17fa 100644 --- a/include/state.h +++ b/include/state.h @@ -7,13 +7,6 @@ typedef struct { unsigned int animCount; } ModelAnimations; -typedef struct { - int type; - int texRef; /* TextureReference. */ - Texture texture; - RenderTexture renderTexture; -} ReiTexture; - typedef struct { char *exePath; bool hasWindow; @@ -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; -- cgit v1.2.3