mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-26 13:25:28 +00:00
gl_font.c - rename gl_data to video_data
This commit is contained in:
parent
23e1744235
commit
93c55879a8
@ -27,12 +27,12 @@ static const gl_font_renderer_t *gl_font_backends[] = {
|
||||
};
|
||||
|
||||
bool gl_font_init_first(const gl_font_renderer_t **font_driver, void **font_handle,
|
||||
void *gl_data, const char *font_path, float font_size)
|
||||
void *video_data, const char *font_path, float font_size)
|
||||
{
|
||||
unsigned i;
|
||||
for (i = 0; gl_font_backends[i]; i++)
|
||||
{
|
||||
void *data = gl_font_backends[i]->init(gl_data, font_path, font_size);
|
||||
void *data = gl_font_backends[i]->init(video_data, font_path, font_size);
|
||||
if (data)
|
||||
{
|
||||
*font_driver = gl_font_backends[i];
|
||||
|
Loading…
x
Reference in New Issue
Block a user