From 6a88c43d946fdd6d2df2f349d4671168dacf019b Mon Sep 17 00:00:00 2001 From: Tropical <42101043+tropicaaal@users.noreply.github.com> Date: Wed, 11 Mar 2026 14:57:53 -0500 Subject: [PATCH] fix: comment out duplicated symbols for the time-being --- .../Platform/Linux/Iggy/gdraw/gdraw_sdl.c | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/Minecraft.Client/Platform/Linux/Iggy/gdraw/gdraw_sdl.c b/Minecraft.Client/Platform/Linux/Iggy/gdraw/gdraw_sdl.c index bbe06a930..32c1599be 100644 --- a/Minecraft.Client/Platform/Linux/Iggy/gdraw/gdraw_sdl.c +++ b/Minecraft.Client/Platform/Linux/Iggy/gdraw/gdraw_sdl.c @@ -27,26 +27,26 @@ void *IggyGDrawMallocAnnotated(SINTa size, const char *file, int line) return malloc((size_t)size); } -void IggyGDrawFree(void *ptr) -{ - free(ptr); -} +// void IggyGDrawFree(void *ptr) +// { +// free(ptr); +// } -void IggyGDrawSendWarning(Iggy *f, char const *message, ...) -{ - (void)f; - va_list args; - va_start(args, message); - fprintf(stderr, "[Iggy GDraw Warning] "); - vfprintf(stderr, message, args); - fprintf(stderr, "\n"); - va_end(args); -} +// void IggyGDrawSendWarning(Iggy *f, char const *message, ...) +// { +// (void)f; +// va_list args; +// va_start(args, message); +// fprintf(stderr, "[Iggy GDraw Warning] "); +// vfprintf(stderr, message, args); +// fprintf(stderr, "\n"); +// va_end(args); +// } -void IggyDiscardVertexBufferCallback(void *owner, void *buf) -{ - (void)owner; (void)buf; -} +// void IggyDiscardVertexBufferCallback(void *owner, void *buf) +// { +// (void)owner; (void)buf; +// } // glActiveTexture and glCompressedTexImage2D are core GL 1.3+ on Linux and // are declared directly in , so they are omitted from this list.