shithub: cstory

ref: f0e1119a91a1b21e91e9a86c7a3213ba6279ee49
dir: /src/Font.h/

View raw version
#pragma once

#include <stddef.h>

#include "Backends/Rendering.h"

typedef struct Font Font;

Font* LoadFontFromData(const unsigned char *data, size_t data_size, size_t cell_width, size_t cell_height);
Font* LoadFont(const char *font_filename, size_t cell_width, size_t cell_height);
void DrawText(Font *font, RenderBackend_Surface *surface, int x, int y, unsigned long colour, const char *string);
void UnloadFont(Font *font);