summaryrefslogtreecommitdiff
path: root/stb_image.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-28 00:56:49 -0400
committerpommicket <pommicket@gmail.com>2025-09-28 00:58:15 -0400
commit92751910dc97f918a407dc14f295eeca4c64de90 (patch)
tree320dbd62e902e85328e00f7c2e626d2be72e25c4 /stb_image.c
parent59a65b2bc579d0dc3e78cb2f90a0677fd6772341 (diff)
Remove shader custom texture support
Too much added code for little benefit
Diffstat (limited to 'stb_image.c')
-rw-r--r--stb_image.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/stb_image.c b/stb_image.c
deleted file mode 100644
index 2badac7..0000000
--- a/stb_image.c
+++ /dev/null
@@ -1,25 +0,0 @@
-// used for debug build to speed things up
-// just exports everything in stb_image.h
-
-#ifdef __GNUC__
-#define no_warn_start _Pragma("GCC diagnostic push") \
- _Pragma("GCC diagnostic ignored \"-Wpedantic\"") \
- _Pragma("GCC diagnostic ignored \"-Wsign-conversion\"") \
- _Pragma("GCC diagnostic ignored \"-Wsign-compare\"") \
- _Pragma("GCC diagnostic ignored \"-Wconversion\"") \
- _Pragma("GCC diagnostic ignored \"-Wimplicit-fallthrough\"") \
- _Pragma("GCC diagnostic ignored \"-Wunused-function\"")
-
-#define no_warn_end _Pragma("GCC diagnostic pop")
-#else
-#define no_warn_start
-#define no_warn_end
-#endif
-
-#define STB_IMAGE_IMPLEMENTATION
-#if __TINYC__
-#define STBI_NO_SIMD
-#endif
-no_warn_start
-#include "lib/stb_image.h"
-no_warn_end