summaryrefslogtreecommitdiff
path: root/3rd_party/stb_image_write.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-02-19 16:50:31 -0500
committerpommicket <pommicket@gmail.com>2025-02-19 16:50:31 -0500
commitccb3ec86fc8cbfaa2e13c16e3c9952293670d564 (patch)
tree6976865674c747e3731eef4ec0d1a3d7c5114b26 /3rd_party/stb_image_write.c
parentae508d6b2d020649f9382fa54c56cda06acfd304 (diff)
code cleanup, remove broken usb identification
Diffstat (limited to '3rd_party/stb_image_write.c')
-rw-r--r--3rd_party/stb_image_write.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/3rd_party/stb_image_write.c b/3rd_party/stb_image_write.c
new file mode 100644
index 0000000..1cd4413
--- /dev/null
+++ b/3rd_party/stb_image_write.c
@@ -0,0 +1,23 @@
+
+#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_WRITE_IMPLEMENTATION
+#if __TINYC__
+#define STBI_NO_SIMD
+#endif
+no_warn_start
+#include "stb_image_write.h"
+no_warn_end