diff options
author | pommicket <pommicket@gmail.com> | 2025-02-16 12:24:28 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-02-16 12:24:28 -0500 |
commit | 40a64b4c8b4ce639711754fc5637cd91e58c3214 (patch) | |
tree | 497c9f217a6e10b470968b292799710a87ea1a07 /lib/stb_image_write.c | |
parent | 431d7a0ed866b78446bc4541b2e154c3c8272446 (diff) |
basic camera
Diffstat (limited to 'lib/stb_image_write.c')
-rw-r--r-- | lib/stb_image_write.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/stb_image_write.c b/lib/stb_image_write.c new file mode 100644 index 0000000..1cd4413 --- /dev/null +++ b/lib/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 |