fix: comment out duplicated symbols for the time-being

This commit is contained in:
Tropical 2026-03-11 14:57:53 -05:00
parent 6fd48242ae
commit 6a88c43d94

View file

@ -27,26 +27,26 @@ void *IggyGDrawMallocAnnotated(SINTa size, const char *file, int line)
return malloc((size_t)size); return malloc((size_t)size);
} }
void IggyGDrawFree(void *ptr) // void IggyGDrawFree(void *ptr)
{ // {
free(ptr); // free(ptr);
} // }
void IggyGDrawSendWarning(Iggy *f, char const *message, ...) // void IggyGDrawSendWarning(Iggy *f, char const *message, ...)
{ // {
(void)f; // (void)f;
va_list args; // va_list args;
va_start(args, message); // va_start(args, message);
fprintf(stderr, "[Iggy GDraw Warning] "); // fprintf(stderr, "[Iggy GDraw Warning] ");
vfprintf(stderr, message, args); // vfprintf(stderr, message, args);
fprintf(stderr, "\n"); // fprintf(stderr, "\n");
va_end(args); // va_end(args);
} // }
void IggyDiscardVertexBufferCallback(void *owner, void *buf) // void IggyDiscardVertexBufferCallback(void *owner, void *buf)
{ // {
(void)owner; (void)buf; // (void)owner; (void)buf;
} // }
// glActiveTexture and glCompressedTexImage2D are core GL 1.3+ on Linux and // glActiveTexture and glCompressedTexImage2D are core GL 1.3+ on Linux and
// are declared directly in <GL/gl.h>, so they are omitted from this list. // are declared directly in <GL/gl.h>, so they are omitted from this list.