2014-12-10 00:27:11 -08:00
|
|
|
#define STB_TRUETYPE_IMPLEMENTATION
|
2014-05-25 20:10:17 -07:00
|
|
|
#define STB_PERLIN_IMPLEMENTATION
|
|
|
|
#define STB_IMAGE_WRITE_IMPLEMENTATION
|
|
|
|
#define STB_DXT_IMPLEMENATION
|
|
|
|
#define STB_C_LEXER_IMPLEMENTATIOn
|
2014-05-25 21:54:59 -07:00
|
|
|
#define STB_DIVIDE_IMPLEMENTATION
|
2014-05-31 04:49:43 -07:00
|
|
|
#define STB_IMAGE_IMPLEMENTATION
|
2014-07-04 08:06:36 -07:00
|
|
|
#define STB_HERRINGBONE_WANG_TILE_IMPLEMENTATION
|
2014-12-02 03:00:08 -08:00
|
|
|
#define STB_RECT_PACK_IMPLEMENTATION
|
2014-05-25 20:10:17 -07:00
|
|
|
|
2014-12-20 05:46:13 -08:00
|
|
|
#define STBI_MALLOC my_malloc
|
|
|
|
#define STBI_FREE my_free
|
|
|
|
#define STBI_REALLOC my_realloc
|
|
|
|
|
|
|
|
void *my_malloc(size_t) { return 0; }
|
|
|
|
void *my_realloc(void *, size_t) { return 0; }
|
|
|
|
void my_free(void *) { }
|
|
|
|
|
2014-12-14 18:14:14 -08:00
|
|
|
#include "stb_image.h"
|
2014-12-10 00:27:11 -08:00
|
|
|
#include "stb_rect_pack.h"
|
2014-05-25 20:10:17 -07:00
|
|
|
#include "stb_truetype.h"
|
|
|
|
#include "stb_image_write.h"
|
|
|
|
#include "stb_perlin.h"
|
|
|
|
#include "stb_dxt.h"
|
|
|
|
#include "stb_c_lexer.h"
|
2014-05-25 21:54:59 -07:00
|
|
|
#include "stb_divide.h"
|
2014-07-04 08:06:36 -07:00
|
|
|
#include "stb_herringbone_wang_tile.h"
|
2014-09-23 17:56:03 -07:00
|
|
|
|
2014-12-02 03:00:08 -08:00
|
|
|
#define STBTE_DRAW_RECT(x0,y0,x1,y1,color) do ; while(0)
|
|
|
|
#define STBTE_DRAW_TILE(x,y,id,highlight,data) do ; while(0)
|
2014-09-23 17:56:03 -07:00
|
|
|
#define STB_TILEMAP_EDITOR_IMPLEMENTATION
|
|
|
|
#include "stb_tilemap_editor.h"
|