mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Merge pull request #1556 from heuripedes/master
(XMB) Disable block text rendering
This commit is contained in:
commit
299577cb87
@ -1268,10 +1268,12 @@ static void xmb_frame(void)
|
||||
if (!gl)
|
||||
return;
|
||||
|
||||
#if 0
|
||||
font_driver = (const struct font_renderer*)gl->font_driver;
|
||||
|
||||
if (font_driver->bind_block)
|
||||
font_driver->bind_block(xmb->font.buf, &xmb->raster_block);
|
||||
#endif
|
||||
|
||||
xmb->raster_block.carr.coords.vertices = 0;
|
||||
|
||||
@ -1389,11 +1391,13 @@ static void xmb_frame(void)
|
||||
xmb_frame_messagebox(msg);
|
||||
}
|
||||
|
||||
#if 0
|
||||
if (font_driver->flush)
|
||||
{
|
||||
font_driver->flush(xmb->font.buf);
|
||||
font_driver->bind_block(xmb->font.buf, NULL);
|
||||
}
|
||||
#endif
|
||||
|
||||
if (settings->menu.mouse.enable)
|
||||
xmb_draw_cursor(gl, xmb, menu->mouse.x, menu->mouse.y);
|
||||
|
Loading…
x
Reference in New Issue
Block a user