RetroArch/gfx/font_driver.c

111 lines
2.8 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2015-01-07 17:06:50 +00:00
* Copyright (C) 2011-2015 - Daniel De Matteis
2012-02-12 14:23:35 +00:00
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2012-02-12 14:23:35 +00:00
* 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.
*
2012-04-21 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2012-02-12 14:23:35 +00:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2012-02-12 14:23:35 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "font_driver.h"
#include "font_renderer_driver.h"
2015-01-12 22:19:21 +00:00
#include "../general.h"
2012-02-12 14:23:35 +00:00
#ifdef HAVE_D3D
static const font_renderer_t *d3d_font_backends[] = {
2012-12-15 02:35:04 +00:00
#if defined(_XBOX1)
&d3d_xdk1_font,
2012-12-15 03:36:19 +00:00
#elif defined(_XBOX360)
2012-12-15 02:35:04 +00:00
&d3d_xbox360_font,
#elif defined(_WIN32)
&d3d_win32_font,
2012-12-15 02:35:04 +00:00
#endif
};
static bool d3d_font_init_first(
const void **font_driver, void **font_handle,
2015-03-29 22:49:18 +00:00
void *video_data, const char *font_path, float font_size)
2012-12-15 02:35:04 +00:00
{
unsigned i;
for (i = 0; i < ARRAY_SIZE(d3d_font_backends); i++)
2012-12-15 02:35:04 +00:00
{
void *data = d3d_font_backends[i]->init(video_data, font_path, font_size);
if (!data)
continue;
*font_driver = d3d_font_backends[i];
*font_handle = data;
return true;
2012-12-15 02:35:04 +00:00
}
return false;
2012-12-15 02:35:04 +00:00
}
#endif
#ifdef HAVE_OPENGL
static const font_renderer_t *gl_font_backends[] = {
2015-04-23 00:04:32 +00:00
&gl_raster_font,
#if defined(HAVE_LIBDBGFONT)
&libdbg_font,
#endif
NULL,
};
static bool gl_font_init_first(
const void **font_driver, void **font_handle,
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(video_data, font_path, font_size);
if (!data)
continue;
*font_driver = gl_font_backends[i];
*font_handle = data;
return true;
}
return false;
}
#endif
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)
{
switch (api)
{
#ifdef HAVE_D3D
case FONT_DRIVER_RENDER_DIRECT3D_API:
return d3d_font_init_first(font_driver, font_handle,
video_data, font_path, font_size);
#endif
#ifdef HAVE_OPENGL
case FONT_DRIVER_RENDER_OPENGL_API:
return gl_font_init_first(font_driver, font_handle,
video_data, font_path, font_size);
#endif
case FONT_DRIVER_RENDER_DONT_CARE:
/* TODO/FIXME - lookup graphics driver's 'API' */
break;
default:
break;
}
return false;
}