17 lines
555 B
C
17 lines
555 B
C
#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);
|