(font_driver.c) Turn some functions static and remove others that
are unused
This commit is contained in:
parent
f89d9822da
commit
693e684b4f
|
@ -37,16 +37,6 @@ static const struct font_renderer *font_osd_driver;
|
||||||
|
|
||||||
static void *font_osd_data;
|
static void *font_osd_data;
|
||||||
|
|
||||||
int font_renderer_get_message_width(const char *msg, float scale)
|
|
||||||
{
|
|
||||||
const struct font_renderer *font_driver = font_osd_driver;
|
|
||||||
|
|
||||||
if (!font_driver || !font_driver->get_message_width)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
return font_driver->get_message_width(font_osd_data, msg, strlen(msg), scale);
|
|
||||||
}
|
|
||||||
|
|
||||||
int font_renderer_create_default(const void **data, void **handle,
|
int font_renderer_create_default(const void **data, void **handle,
|
||||||
const char *font_path, unsigned font_size)
|
const char *font_path, unsigned font_size)
|
||||||
{
|
{
|
||||||
|
@ -174,7 +164,7 @@ static bool vita2d_font_init_first(
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool font_init_first(const void **font_driver, void **font_handle,
|
static bool font_init_first(const void **font_driver, void **font_handle,
|
||||||
void *video_data, const char *font_path, float font_size,
|
void *video_data, const char *font_path, float font_size,
|
||||||
enum font_driver_render_api api)
|
enum font_driver_render_api api)
|
||||||
{
|
{
|
||||||
|
|
|
@ -127,13 +127,6 @@ typedef struct font_renderer_driver
|
||||||
int font_renderer_create_default(const void **driver,
|
int font_renderer_create_default(const void **driver,
|
||||||
void **handle, const char *font_path, unsigned font_size);
|
void **handle, const char *font_path, unsigned font_size);
|
||||||
|
|
||||||
int font_renderer_get_message_width(const char *msg, float scale);
|
|
||||||
|
|
||||||
bool font_init_first(
|
|
||||||
const void **font_driver, void **font_handle,
|
|
||||||
void *video_data, const char *font_path, float font_size,
|
|
||||||
enum font_driver_render_api api);
|
|
||||||
|
|
||||||
bool font_driver_has_render_msg(void);
|
bool font_driver_has_render_msg(void);
|
||||||
|
|
||||||
void font_driver_render_msg(void *data, const char *msg, const struct font_params *params);
|
void font_driver_render_msg(void *data, const char *msg, const struct font_params *params);
|
||||||
|
|
Loading…
Reference in New Issue