nishbox/engine/include/gf_font.h
2025-04-21 11:09:51 +09:00

59 lines
1001 B
C

/**
* @file gf_font.h
* @~english
* @brief Font
*/
#ifndef __GF_FONT_H__
#define __GF_FONT_H__
#include <gf_pre.h>
#include <gf_macro.h>
/* Type */
#include <gf_type/font.h>
/* Engine */
#include <gf_type/draw.h>
/* Standard */
#include <stddef.h>
/**
* @~english
* @brief Get glyph
* @param font Font
* @param code Character code
* @return Glyph
*/
GF_EXPORT gf_font_glyph_t* gf_font_get(gf_font_t* font, int code);
/**
* @~english
* @brief Load font
* @param draw Drawing interface
* @param path Path
* @param data Data
* @param size Data size
* @return Font
*/
GF_EXPORT gf_font_t* gf_font_create_raw(gf_draw_t* draw, const char* path, const void* data, size_t size);
/**
* @~english
* @brief Load font
* @param draw Drawing interface
* @param path Path
* @return Font
*/
GF_EXPORT gf_font_t* gf_font_create(gf_draw_t* draw, const char* path);
/**
* @~english
* @brief Destroy font
* @param font Font
*/
GF_EXPORT void gf_font_destroy(gf_font_t* font);
#endif