summaryrefslogtreecommitdiff
path: root/src/ral/backends/opengl/backend_opengl.h
diff options
context:
space:
mode:
authoromnisci3nce <omniscient.oce@gmail.com>2024-07-19 15:52:14 +1000
committeromnisci3nce <omniscient.oce@gmail.com>2024-07-19 15:52:14 +1000
commitefb2d293d5e849fc96e4e386d55a7611795561aa (patch)
treecf4a2054a868ec4757a60c217d64b85413bc5766 /src/ral/backends/opengl/backend_opengl.h
parent82515f9d90ac149984013f0d64c1cab37b349b29 (diff)
clean up texture type handling a little bit
Diffstat (limited to 'src/ral/backends/opengl/backend_opengl.h')
-rw-r--r--src/ral/backends/opengl/backend_opengl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ral/backends/opengl/backend_opengl.h b/src/ral/backends/opengl/backend_opengl.h
index fd50830..98ffe95 100644
--- a/src/ral/backends/opengl/backend_opengl.h
+++ b/src/ral/backends/opengl/backend_opengl.h
@@ -60,7 +60,7 @@ typedef struct GPU_Buffer {
typedef struct GPU_Texture {
u32 id;
- void *pad;
+ GPU_TextureType type;
} GPU_Texture;
typedef struct opengl_support {