prosperon/source/engine/config.c

69 lines
1.4 KiB
C
Raw Normal View History

2024-05-08 11:07:19 -05:00
#include "config.h"
#define SOKOL_TRACE_HOOKS
#define SOKOL_IMPL
#include "sokol/sokol_audio.h"
#include "sokol/sokol_time.h"
#include "sokol/sokol_args.h"
#include "sokol/sokol_gfx.h"
#include "sokol/sokol_app.h"
2024-10-18 12:51:21 -05:00
#include "sokol/sokol_fetch.h"
2024-10-17 17:23:33 -05:00
#include "sokol/util/sokol_gl.h"
2024-10-18 12:51:21 -05:00
#define CUTE_ASEPRITE_IMPLEMENTATION
#include "cute_aseprite.h"
2024-10-17 17:23:33 -05:00
#define STB_PERLIN_IMPLEMENTATION
#include "stb_perlin.h"
#define STB_RECT_PACK_IMPLEMENTATION
#include "stb_rect_pack.h"
#define MSF_GIF_IMPL
#include "msf_gif.h"
2023-11-27 14:29:55 -06:00
#define STB_HEXWAVE_IMPLEMENTATION
#include "stb_hexwave.h"
#define STB_DS_IMPLEMENTATION
#include <stb_ds.h>
#define STB_TRUETYPE_IMPLEMENTATION
#define STB_TRUETYPE_NO_STDIO
#include <stb_truetype.h>
#define STB_IMAGE_IMPLEMENTATION
#define STBI_FAILURE_USERMSG
#define STBI_NO_STDIO
#include "stb_image.h"
2024-05-08 11:07:19 -05:00
#define STB_IMAGE_RESIZE_IMPLEMENTATION
#include "stb_image_resize2.h"
#define STB_IMAGE_WRITE_IMPLEMENTATION
#define STBIR_DEFAULT_FILTER_DOWNSAMPLE STBIR_FILTER_BOX
#include "stb_image_write.h"
#define PL_MPEG_IMPLEMENTATION
#include <pl_mpeg.h>
#define NANOSVG_IMPLEMENTATION
#define NANOSVGRAST_IMPLEMENTATION
#include "nanosvg.h"
#include "nanosvgrast.h"
2024-04-26 16:04:31 -05:00
#define CGLTF_IMPLEMENTATION
#include "cgltf.h"
2024-05-08 11:07:19 -05:00
#define PAR_SHAPES_IMPLEMENTATION
#include "par/par_shapes.h"
#define PAR_STREAMLINES_IMPLEMENTATION
#include "par/par_streamlines.h"
#define QOI_IMPLEMENTATION
2024-06-05 16:07:44 -05:00
#include "qoi.h"
2024-10-19 18:37:27 -05:00
#define QOP_IMPLEMENTATION
#include "qop.h"