mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 19:20:24 +00:00
Simplify menu_display_font_flush_block
This commit is contained in:
parent
86958c4117
commit
a79511e27f
@ -547,8 +547,7 @@ static void glui_frame(void)
|
|||||||
TEXT_ALIGN_RIGHT);
|
TEXT_ALIGN_RIGHT);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (menu_display_font_flush_block(menu, font_driver))
|
menu_display_font_flush_block(menu, font_driver);
|
||||||
menu_display_font_bind_block(menu, font_driver, NULL);
|
|
||||||
|
|
||||||
if (menu->keyboard.display)
|
if (menu->keyboard.display)
|
||||||
{
|
{
|
||||||
|
@ -1423,8 +1423,7 @@ static void xmb_frame(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (menu_display_font_flush_block(menu, font_driver))
|
menu_display_font_flush_block(menu, font_driver);
|
||||||
menu_display_font_bind_block(menu, font_driver, NULL);
|
|
||||||
|
|
||||||
if (menu->keyboard.display)
|
if (menu->keyboard.display)
|
||||||
{
|
{
|
||||||
|
@ -133,16 +133,6 @@ bool menu_display_font_init_first(const void **font_driver,
|
|||||||
font_path, font_size, FONT_DRIVER_RENDER_OPENGL_API);
|
font_path, font_size, FONT_DRIVER_RENDER_OPENGL_API);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool menu_display_font_flush_block(menu_handle_t *menu,
|
|
||||||
const struct font_renderer *font_driver)
|
|
||||||
{
|
|
||||||
if (!font_driver || !font_driver->flush)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
font_driver->flush(menu->font.buf);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool menu_display_font_bind_block(menu_handle_t *menu,
|
bool menu_display_font_bind_block(menu_handle_t *menu,
|
||||||
const struct font_renderer *font_driver, void *userdata)
|
const struct font_renderer *font_driver, void *userdata)
|
||||||
{
|
{
|
||||||
@ -153,3 +143,15 @@ bool menu_display_font_bind_block(menu_handle_t *menu,
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool menu_display_font_flush_block(menu_handle_t *menu,
|
||||||
|
const struct font_renderer *font_driver)
|
||||||
|
{
|
||||||
|
if (!font_driver || !font_driver->flush)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
font_driver->flush(menu->font.buf);
|
||||||
|
|
||||||
|
return menu_display_font_bind_block(menu,
|
||||||
|
font_driver, NULL);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user