13 lines
318 B
C
13 lines
318 B
C
// dvxIcon.c — stb_image implementation for DV/X GUI
|
|
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
|
|
|
#define STBI_ONLY_BMP
|
|
#define STBI_ONLY_TGA
|
|
#define STBI_ONLY_PNG
|
|
#define STBI_NO_SIMD
|
|
#define STB_IMAGE_IMPLEMENTATION
|
|
#include "thirdparty/stb_image.h"
|
|
|
|
#pragma GCC diagnostic pop
|