ref: 72a5f366547e12cab97eca00df1a09d4e178033e
dir: /src/Font.h/
#pragma once #include <stddef.h> #include "Backends/Rendering.h" typedef struct Font Font; #ifdef FREETYPE_FONTS Font* LoadFreeTypeFontFromData(const unsigned char *data, size_t data_size, size_t cell_width, size_t cell_height); Font* LoadFreeTypeFont(const char *font_filename, size_t cell_width, size_t cell_height); #else Font* LoadBitmapFont(const char *bitmap_path, const char *metadata_path); #endif void DrawText(Font *font, RenderBackend_Surface *surface, int x, int y, unsigned long colour, const char *string); void UnloadFont(Font *font);