OpenRaider  0.1.4-dev
Open Source Tomb Raider Game Engine implementation
stb.cpp
Go to the documentation of this file.
1 
8 #include "global.h"
9 
10 #define STB_IMAGE_IMPLEMENTATION
11 #define STBI_ASSERT(x) assert(x)
12 #include "stb/stb_image.h"
13 
14 #define STB_IMAGE_WRITE_IMPLEMENTATION
15 #include "stb/stb_image_write.h"
16 
17 #define STB_RECT_PACK_IMPLEMENTATION
18 #define STBRP_ASSERT assert
19 #include "stb/stb_rect_pack.h"
20 
21 #define STB_TRUETYPE_IMPLEMENTATION
22 #define STBTT_assert(x) assert(x)
23 #include "stb/stb_truetype.h"
24 
Included everywhere.