10 lines
548 B
C
10 lines
548 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
typedef struct FontObject FontObject;
|
|
|
|
FontObject* LoadFontFromData(const unsigned char *data, size_t data_size, unsigned int cell_width, unsigned int cell_height);
|
|
FontObject* LoadFont(const char *font_filename, unsigned int cell_width, unsigned int cell_height);
|
|
void DrawText(FontObject *font_object, unsigned char *bitmap_buffer, size_t bitmap_pitch, int bitmap_width, int bitmap_height, int x, int y, unsigned long colour, const char *string, size_t string_length);
|
|
void UnloadFont(FontObject *font_object);
|