File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 7171#include <stdio.h> // Required for: sprintf() [Used in ExportImageAsCode()]
7272
7373// Support only desired texture formats on stb_image
74- #if !defined( SUPPORT_FILEFORMAT_BMP )
74+ #if !SUPPORT_FILEFORMAT_BMP
7575 #define STBI_NO_BMP
7676#endif
77- #if !defined( SUPPORT_FILEFORMAT_PNG )
77+ #if !SUPPORT_FILEFORMAT_PNG
7878 #define STBI_NO_PNG
7979#endif
80- #if !defined( SUPPORT_FILEFORMAT_TGA )
80+ #if !SUPPORT_FILEFORMAT_TGA
8181 #define STBI_NO_TGA
8282#endif
83- #if !defined( SUPPORT_FILEFORMAT_JPG )
83+ #if !SUPPORT_FILEFORMAT_JPG
8484 #define STBI_NO_JPEG // Image format .jpg and .jpeg
8585#endif
86- #if !defined( SUPPORT_FILEFORMAT_PSD )
86+ #if !SUPPORT_FILEFORMAT_PSD
8787 #define STBI_NO_PSD
8888#endif
89- #if !defined( SUPPORT_FILEFORMAT_GIF )
89+ #if !SUPPORT_FILEFORMAT_GIF
9090 #define STBI_NO_GIF
9191#endif
92- #if !defined( SUPPORT_FILEFORMAT_PIC )
92+ #if !SUPPORT_FILEFORMAT_PIC
9393 #define STBI_NO_PIC
9494#endif
95- #if !defined( SUPPORT_FILEFORMAT_HDR )
95+ #if !SUPPORT_FILEFORMAT_HDR
9696 #define STBI_NO_HDR
9797#endif
98- #if !defined( SUPPORT_FILEFORMAT_PNM )
98+ #if !SUPPORT_FILEFORMAT_PNM
9999 #define STBI_NO_PNM
100100#endif
101101
You can’t perform that action at this time.
0 commit comments