2012-12-14 23:07:31 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2013-01-01 00:37:37 +00:00
|
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2013 - Daniel De Matteis
|
2012-12-14 23:07:31 +00:00
|
|
|
*
|
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gl_font.h"
|
2012-12-14 23:27:30 +00:00
|
|
|
#include "../../general.h"
|
2012-12-14 23:07:31 +00:00
|
|
|
|
2012-12-14 23:27:30 +00:00
|
|
|
static const gl_font_renderer_t *gl_font_backends[] = {
|
2013-11-07 01:54:09 +00:00
|
|
|
#if defined(HAVE_LIBDBGFONT)
|
2012-12-14 23:17:43 +00:00
|
|
|
&libdbg_font,
|
|
|
|
#else
|
2012-12-14 23:07:31 +00:00
|
|
|
&gl_raster_font,
|
2012-12-14 23:17:43 +00:00
|
|
|
#endif
|
2012-12-14 23:07:31 +00:00
|
|
|
};
|
|
|
|
|
2013-11-01 16:01:27 +00:00
|
|
|
const gl_font_renderer_t *gl_font_init_first(void *data, const char *font_path, float font_size,
|
|
|
|
unsigned win_width, unsigned win_height)
|
2012-12-14 23:07:31 +00:00
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(gl_font_backends); i++)
|
2012-12-14 23:07:31 +00:00
|
|
|
{
|
2013-11-01 16:01:27 +00:00
|
|
|
if (gl_font_backends[i]->init(data, font_path, font_size, win_width, win_height))
|
2012-12-14 23:27:30 +00:00
|
|
|
return gl_font_backends[i];
|
2012-12-14 23:07:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|