From d17116fb08fd34ae0a5ddbb78ed9d6540c59a197 Mon Sep 17 00:00:00 2001 From: Bigfoot71 Date: Sat, 17 May 2025 14:42:03 +0200 Subject: [PATCH] adding `GRAPHICS_API_OPENGL_11_SOFTWARE` in `DrawMesh` --- src/rmodels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rmodels.c b/src/rmodels.c index d927f4099..68638c904 100644 --- a/src/rmodels.c +++ b/src/rmodels.c @@ -1421,7 +1421,7 @@ void UpdateMeshBuffer(Mesh mesh, int index, const void *data, int dataSize, int // Draw a 3d mesh with material and transform void DrawMesh(Mesh mesh, Material material, Matrix transform) { -#if defined(GRAPHICS_API_OPENGL_11) +#if defined(GRAPHICS_API_OPENGL_11) || defined(GRAPHICS_API_OPENGL_11_SOFTWARE) #define GL_VERTEX_ARRAY 0x8074 #define GL_NORMAL_ARRAY 0x8075 #define GL_COLOR_ARRAY 0x8076