22 lines
329 B
C
22 lines
329 B
C
|
#ifndef STB_IMAGE_CONFIG_H
|
||
|
#define STB_IMAGE_CONFIG_H
|
||
|
|
||
|
#define STBI_NO_JPEG
|
||
|
#define STBI_NO_BMP
|
||
|
#define STBI_NO_PSD
|
||
|
#define STBI_NO_TGA
|
||
|
#define STBI_NO_HDR
|
||
|
#define STBI_NO_PIC
|
||
|
#define STBI_NO_PNM
|
||
|
|
||
|
#define STBI_NO_LINEAR
|
||
|
#define STBI_NO_HDR
|
||
|
|
||
|
#define STBI_NO_STDIO
|
||
|
|
||
|
#define STB_IMAGE_IMPLEMENTATION
|
||
|
|
||
|
#include "stb_image.h"
|
||
|
|
||
|
#endif
|