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
|
2017-01-22 12:40:32 +00:00
|
|
|
* Copyright (C) 2011-2017 - 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/>.
|
|
|
|
*/
|
|
|
|
|
2015-04-03 18:36:19 +00:00
|
|
|
#include "font_driver.h"
|
2015-12-05 10:29:06 +00:00
|
|
|
#include "video_thread_wrapper.h"
|
2016-09-01 03:38:26 +00:00
|
|
|
|
|
|
|
#include "../configuration.h"
|
2015-12-05 11:07:22 +00:00
|
|
|
#include "../verbosity.h"
|
|
|
|
|
2016-09-06 21:47:05 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../config.h"
|
|
|
|
#endif
|
|
|
|
|
2017-01-14 20:02:30 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-12-05 11:07:22 +00:00
|
|
|
static const font_renderer_driver_t *font_backends[] = {
|
|
|
|
#ifdef HAVE_FREETYPE
|
|
|
|
&freetype_font_renderer,
|
|
|
|
#endif
|
|
|
|
#if defined(__APPLE__) && defined(HAVE_CORETEXT)
|
|
|
|
&coretext_font_renderer,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STB_FONT
|
2016-11-05 18:33:07 +00:00
|
|
|
#if defined(VITA) || defined(ANDROID) || defined(_WIN32) && !defined(_XBOX)
|
2016-11-05 15:20:18 +00:00
|
|
|
&stb_unicode_font_renderer,
|
|
|
|
#else
|
2015-12-05 11:07:22 +00:00
|
|
|
&stb_font_renderer,
|
2016-11-05 15:20:18 +00:00
|
|
|
#endif
|
2015-12-05 11:07:22 +00:00
|
|
|
#endif
|
|
|
|
&bitmap_font_renderer,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2017-01-25 13:47:24 +00:00
|
|
|
static void *video_font_driver = NULL;
|
2015-12-05 11:25:53 +00:00
|
|
|
|
2015-12-05 11:07:22 +00:00
|
|
|
int font_renderer_create_default(const void **data, void **handle,
|
|
|
|
const char *font_path, unsigned font_size)
|
|
|
|
{
|
|
|
|
|
|
|
|
unsigned i;
|
2016-02-06 20:51:37 +00:00
|
|
|
const font_renderer_driver_t **drv =
|
|
|
|
(const font_renderer_driver_t**)data;
|
2015-12-05 11:07:22 +00:00
|
|
|
|
|
|
|
for (i = 0; font_backends[i]; i++)
|
|
|
|
{
|
|
|
|
const char *path = font_path;
|
|
|
|
|
|
|
|
if (!path)
|
|
|
|
path = font_backends[i]->get_default_font();
|
|
|
|
if (!path)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*handle = font_backends[i]->init(path, font_size);
|
|
|
|
if (*handle)
|
|
|
|
{
|
|
|
|
RARCH_LOG("Using font rendering backend: %s.\n",
|
|
|
|
font_backends[i]->ident);
|
|
|
|
*drv = font_backends[i];
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
RARCH_ERR("Failed to create rendering backend: %s.\n",
|
|
|
|
font_backends[i]->ident);
|
|
|
|
}
|
|
|
|
|
|
|
|
*drv = NULL;
|
|
|
|
*handle = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-02-12 14:23:35 +00:00
|
|
|
|
2015-04-03 18:36:19 +00:00
|
|
|
#ifdef HAVE_D3D
|
2015-03-29 22:55:39 +00:00
|
|
|
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,
|
2014-01-18 20:38:21 +00:00
|
|
|
#elif defined(_WIN32)
|
|
|
|
&d3d_win32_font,
|
2012-12-15 02:35:04 +00:00
|
|
|
#endif
|
|
|
|
};
|
2012-02-17 18:35:51 +00:00
|
|
|
|
2015-04-21 15:33:00 +00:00
|
|
|
static bool d3d_font_init_first(
|
2015-03-29 21:51:06 +00:00
|
|
|
const void **font_driver, void **font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
void *video_data, const char *font_path,
|
|
|
|
float font_size, bool is_threaded)
|
2012-12-15 02:35:04 +00:00
|
|
|
{
|
2014-01-23 21:57:19 +00:00
|
|
|
unsigned i;
|
2015-01-10 15:46:58 +00:00
|
|
|
|
2014-01-23 21:57:19 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(d3d_font_backends); i++)
|
2012-12-15 02:35:04 +00:00
|
|
|
{
|
2016-02-06 20:51:37 +00:00
|
|
|
void *data = d3d_font_backends[i]->init(
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size,
|
|
|
|
is_threaded);
|
2015-03-29 22:41:42 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
continue;
|
2015-03-29 21:51:06 +00:00
|
|
|
|
|
|
|
*font_driver = d3d_font_backends[i];
|
2015-03-29 22:41:42 +00:00
|
|
|
*font_handle = data;
|
2015-03-29 21:51:06 +00:00
|
|
|
|
|
|
|
return true;
|
2012-12-15 02:35:04 +00:00
|
|
|
}
|
|
|
|
|
2015-03-29 21:51:06 +00:00
|
|
|
return false;
|
2012-12-15 02:35:04 +00:00
|
|
|
}
|
2015-04-03 18:36:19 +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,
|
2015-04-03 18:36:19 +00:00
|
|
|
#if defined(HAVE_LIBDBGFONT)
|
|
|
|
&libdbg_font,
|
|
|
|
#endif
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2015-04-21 15:33:00 +00:00
|
|
|
static bool gl_font_init_first(
|
|
|
|
const void **font_driver, void **font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
void *video_data, const char *font_path,
|
|
|
|
float font_size, bool is_threaded)
|
2015-04-03 18:36:19 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; gl_font_backends[i]; i++)
|
|
|
|
{
|
2016-02-06 20:51:37 +00:00
|
|
|
void *data = gl_font_backends[i]->init(
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size,
|
|
|
|
is_threaded);
|
2015-04-03 18:36:19 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*font_driver = gl_font_backends[i];
|
|
|
|
*font_handle = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2015-04-21 15:33:00 +00:00
|
|
|
|
2016-12-01 17:13:36 +00:00
|
|
|
#ifdef HAVE_CACA
|
|
|
|
static const font_renderer_t *caca_font_backends[] = {
|
|
|
|
&caca_font,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool caca_font_init_first(
|
|
|
|
const void **font_driver, void **font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
void *video_data, const char *font_path,
|
|
|
|
float font_size, bool is_threaded)
|
2016-12-01 17:13:36 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; caca_font_backends[i]; i++)
|
|
|
|
{
|
|
|
|
void *data = caca_font_backends[i]->init(
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size,
|
|
|
|
is_threaded);
|
2016-12-01 17:13:36 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*font_driver = caca_font_backends[i];
|
|
|
|
*font_handle = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-21 22:41:20 +00:00
|
|
|
#ifdef DJGPP
|
|
|
|
static const font_renderer_t *vga_font_backends[] = {
|
|
|
|
&vga_font,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool vga_font_init_first(
|
|
|
|
const void **font_driver, void **font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
void *video_data, const char *font_path,
|
|
|
|
float font_size, bool is_threaded)
|
2017-01-21 22:41:20 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; vga_font_backends[i]; i++)
|
|
|
|
{
|
|
|
|
void *data = vga_font_backends[i]->init(
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size,
|
|
|
|
is_threaded);
|
2017-01-21 22:41:20 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*font_driver = vga_font_backends[i];
|
|
|
|
*font_handle = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-04 07:07:19 +00:00
|
|
|
#if defined(_WIN32) && !defined(_XBOX)
|
|
|
|
static const font_renderer_t *gdi_font_backends[] = {
|
|
|
|
&gdi_font,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool gdi_font_init_first(
|
|
|
|
const void **font_driver, void **font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
void *video_data, const char *font_path,
|
|
|
|
float font_size, bool is_threaded)
|
2017-01-04 07:07:19 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; gdi_font_backends[i]; i++)
|
|
|
|
{
|
|
|
|
void *data = gdi_font_backends[i]->init(
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size,
|
|
|
|
is_threaded);
|
2017-01-04 07:07:19 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*font_driver = gdi_font_backends[i];
|
|
|
|
*font_handle = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-02-16 19:24:00 +00:00
|
|
|
#ifdef HAVE_VULKAN
|
|
|
|
static const font_renderer_t *vulkan_font_backends[] = {
|
|
|
|
&vulkan_raster_font,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool vulkan_font_init_first(
|
|
|
|
const void **font_driver, void **font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
void *video_data, const char *font_path,
|
|
|
|
float font_size, bool is_threaded)
|
2016-02-16 19:24:00 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; vulkan_font_backends[i]; i++)
|
|
|
|
{
|
2017-01-25 13:47:24 +00:00
|
|
|
void *data = vulkan_font_backends[i]->init(video_data,
|
|
|
|
font_path, font_size,
|
|
|
|
is_threaded);
|
2016-02-16 19:24:00 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*font_driver = vulkan_font_backends[i];
|
|
|
|
*font_handle = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-10-01 22:11:54 +00:00
|
|
|
#ifdef HAVE_VITA2D
|
|
|
|
static const font_renderer_t *vita2d_font_backends[] = {
|
|
|
|
&vita2d_vita_font
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool vita2d_font_init_first(
|
|
|
|
const void **font_driver, void **font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
void *video_data, const char *font_path,
|
|
|
|
float font_size, bool is_threaded)
|
2015-10-01 22:11:54 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; vita2d_font_backends[i]; i++)
|
|
|
|
{
|
2016-02-06 20:51:37 +00:00
|
|
|
void *data = vita2d_font_backends[i]->init(
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size,
|
|
|
|
is_threaded);
|
2015-10-01 22:11:54 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*font_driver = vita2d_font_backends[i];
|
|
|
|
*font_handle = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-09-29 19:14:12 +00:00
|
|
|
#ifdef _3DS
|
|
|
|
static const font_renderer_t *ctr_font_backends[] = {
|
|
|
|
&ctr_font
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool ctr_font_init_first(
|
|
|
|
const void **font_driver, void **font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
void *video_data, const char *font_path,
|
|
|
|
float font_size, bool is_threaded)
|
2016-09-29 19:14:12 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; ctr_font_backends[i]; i++)
|
|
|
|
{
|
|
|
|
void *data = ctr_font_backends[i]->init(
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size,
|
|
|
|
is_threaded);
|
2016-09-29 19:14:12 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*font_driver = ctr_font_backends[i];
|
|
|
|
*font_handle = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-02-06 20:51:37 +00:00
|
|
|
static bool font_init_first(
|
|
|
|
const void **font_driver, void **font_handle,
|
2015-04-21 15:33:00 +00:00
|
|
|
void *video_data, const char *font_path, float font_size,
|
2017-01-25 13:47:24 +00:00
|
|
|
enum font_driver_render_api api, bool is_threaded)
|
2015-04-21 15:33:00 +00:00
|
|
|
{
|
2015-05-03 01:19:42 +00:00
|
|
|
if (font_path && !font_path[0])
|
|
|
|
font_path = NULL;
|
|
|
|
|
2015-11-09 03:11:21 +00:00
|
|
|
switch (api)
|
2015-04-21 15:33:00 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_D3D
|
|
|
|
case FONT_DRIVER_RENDER_DIRECT3D_API:
|
|
|
|
return d3d_font_init_first(font_driver, font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, is_threaded);
|
2015-04-21 15:33:00 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_OPENGL
|
|
|
|
case FONT_DRIVER_RENDER_OPENGL_API:
|
|
|
|
return gl_font_init_first(font_driver, font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, is_threaded);
|
2015-10-01 22:11:54 +00:00
|
|
|
#endif
|
2016-02-16 19:24:00 +00:00
|
|
|
#ifdef HAVE_VULKAN
|
|
|
|
case FONT_DRIVER_RENDER_VULKAN_API:
|
|
|
|
return vulkan_font_init_first(font_driver, font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, is_threaded);
|
2016-02-16 19:24:00 +00:00
|
|
|
#endif
|
2015-10-01 22:11:54 +00:00
|
|
|
#ifdef HAVE_VITA2D
|
|
|
|
case FONT_DRIVER_RENDER_VITA2D:
|
|
|
|
return vita2d_font_init_first(font_driver, font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, is_threaded);
|
2016-09-29 19:14:12 +00:00
|
|
|
#endif
|
|
|
|
#ifdef _3DS
|
|
|
|
case FONT_DRIVER_RENDER_CTR:
|
|
|
|
return ctr_font_init_first(font_driver, font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, is_threaded);
|
2016-12-01 17:13:36 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_CACA
|
|
|
|
case FONT_DRIVER_RENDER_CACA:
|
|
|
|
return caca_font_init_first(font_driver, font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, is_threaded);
|
2017-01-04 07:07:19 +00:00
|
|
|
#endif
|
|
|
|
#if defined(_WIN32) && !defined(_XBOX)
|
|
|
|
case FONT_DRIVER_RENDER_GDI:
|
|
|
|
return gdi_font_init_first(font_driver, font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, is_threaded);
|
2017-01-21 22:41:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef DJGPP
|
|
|
|
case FONT_DRIVER_RENDER_VGA:
|
|
|
|
return vga_font_init_first(font_driver, font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, is_threaded);
|
2015-04-21 15:33:00 +00:00
|
|
|
#endif
|
|
|
|
case FONT_DRIVER_RENDER_DONT_CARE:
|
|
|
|
/* TODO/FIXME - lookup graphics driver's 'API' */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2015-12-05 09:31:15 +00:00
|
|
|
|
2017-01-19 15:30:40 +00:00
|
|
|
void font_driver_render_msg(
|
|
|
|
video_frame_info_t *video_info,
|
|
|
|
void *font_data,
|
|
|
|
const char *msg, const void *params)
|
2015-12-05 09:31:15 +00:00
|
|
|
{
|
2017-01-10 20:26:48 +00:00
|
|
|
font_data_t *font = (font_data_t*)(font_data ? font_data : video_font_driver);
|
2016-10-19 22:30:34 +00:00
|
|
|
if (font && font->renderer && font->renderer->render_msg)
|
2017-01-19 15:30:40 +00:00
|
|
|
font->renderer->render_msg(video_info, font->renderer_data, msg, params);
|
2015-12-05 09:31:15 +00:00
|
|
|
}
|
|
|
|
|
2015-12-05 10:34:56 +00:00
|
|
|
void font_driver_bind_block(void *font_data, void *block)
|
2015-12-05 09:59:03 +00:00
|
|
|
{
|
2017-01-10 20:26:48 +00:00
|
|
|
font_data_t *font = (font_data_t*)(font_data ? font_data : video_font_driver);
|
2015-12-05 09:59:03 +00:00
|
|
|
|
2016-10-19 22:30:34 +00:00
|
|
|
if (font && font->renderer && font->renderer->bind_block)
|
2016-10-18 23:07:00 +00:00
|
|
|
font->renderer->bind_block(font->renderer_data, block);
|
2015-12-05 09:59:03 +00:00
|
|
|
}
|
|
|
|
|
2017-01-19 21:03:59 +00:00
|
|
|
void font_driver_flush(unsigned width, unsigned height, void *font_data)
|
2015-12-05 11:10:12 +00:00
|
|
|
{
|
2017-01-10 20:26:48 +00:00
|
|
|
font_data_t *font = (font_data_t*)(font_data ? font_data : video_font_driver);
|
2016-10-19 22:30:34 +00:00
|
|
|
if (font && font->renderer && font->renderer->flush)
|
2017-01-19 21:03:59 +00:00
|
|
|
font->renderer->flush(width, height, font->renderer_data);
|
2015-12-05 11:10:12 +00:00
|
|
|
}
|
|
|
|
|
2016-10-18 23:07:00 +00:00
|
|
|
int font_driver_get_message_width(void *font_data,
|
2016-02-06 20:51:37 +00:00
|
|
|
const char *msg, unsigned len, float scale)
|
2015-12-05 11:17:58 +00:00
|
|
|
{
|
2017-01-10 20:26:48 +00:00
|
|
|
font_data_t *font = (font_data_t*)(font_data ? font_data : video_font_driver);
|
2016-10-19 22:30:34 +00:00
|
|
|
if (font && font->renderer && font->renderer->get_message_width)
|
|
|
|
return font->renderer->get_message_width(font->renderer_data, msg, len, scale);
|
|
|
|
return -1;
|
2015-12-05 11:17:58 +00:00
|
|
|
}
|
|
|
|
|
2016-10-18 23:07:00 +00:00
|
|
|
void font_driver_free(void *font_data)
|
2015-12-05 09:31:15 +00:00
|
|
|
{
|
2016-10-18 23:36:54 +00:00
|
|
|
font_data_t *font = (font_data_t*)font_data;
|
|
|
|
|
|
|
|
if (font)
|
|
|
|
{
|
2017-01-25 13:47:24 +00:00
|
|
|
bool is_threaded = false;
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
is_threaded = video_driver_is_threaded();
|
|
|
|
#endif
|
|
|
|
|
2016-10-18 23:36:54 +00:00
|
|
|
if (font->renderer && font->renderer->free)
|
2017-01-25 13:47:24 +00:00
|
|
|
font->renderer->free(font->renderer_data, is_threaded);
|
2015-12-05 09:54:53 +00:00
|
|
|
|
2016-10-18 23:36:54 +00:00
|
|
|
font->renderer = NULL;
|
|
|
|
font->renderer_data = NULL;
|
2015-12-05 09:54:53 +00:00
|
|
|
|
2016-10-18 23:36:54 +00:00
|
|
|
free(font);
|
|
|
|
}
|
2015-12-05 09:31:15 +00:00
|
|
|
}
|
|
|
|
|
2016-10-18 23:07:00 +00:00
|
|
|
font_data_t *font_driver_init_first(
|
|
|
|
void *video_data, const char *font_path, float font_size,
|
|
|
|
bool threading_hint, enum font_driver_render_api api)
|
2015-12-05 09:31:15 +00:00
|
|
|
{
|
2017-01-25 13:47:24 +00:00
|
|
|
const void *font_driver = NULL;
|
|
|
|
void *font_handle = NULL;
|
|
|
|
bool ok = false;
|
|
|
|
bool is_threaded = false;
|
2015-12-06 21:42:22 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2017-01-25 13:47:24 +00:00
|
|
|
is_threaded = video_driver_is_threaded();
|
|
|
|
|
|
|
|
if ( threading_hint
|
|
|
|
&& is_threaded
|
2016-05-08 12:00:51 +00:00
|
|
|
&& !video_driver_is_hw_context())
|
2016-10-18 23:07:00 +00:00
|
|
|
ok = video_thread_font_init(&font_driver, &font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, api, font_init_first,
|
|
|
|
is_threaded);
|
2016-10-18 23:07:00 +00:00
|
|
|
else
|
2015-12-06 21:42:22 +00:00
|
|
|
#endif
|
2016-10-18 23:07:00 +00:00
|
|
|
ok = font_init_first(&font_driver, &font_handle,
|
2017-01-25 13:47:24 +00:00
|
|
|
video_data, font_path, font_size, api, is_threaded);
|
2016-10-18 23:07:00 +00:00
|
|
|
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
font_data_t *font = (font_data_t*)calloc(1, sizeof(*font));
|
|
|
|
font->renderer = (const font_renderer_t*)font_driver;
|
|
|
|
font->renderer_data = font_handle;
|
|
|
|
font->size = font_size;
|
|
|
|
return font;
|
|
|
|
}
|
2015-12-05 10:29:06 +00:00
|
|
|
|
2016-10-18 23:07:00 +00:00
|
|
|
return NULL;
|
2015-12-05 09:31:15 +00:00
|
|
|
}
|
2015-12-05 11:10:12 +00:00
|
|
|
|
2016-10-18 23:07:00 +00:00
|
|
|
|
|
|
|
void font_driver_init_osd(void *video_data, bool threading_hint, enum font_driver_render_api api)
|
|
|
|
{
|
2017-01-10 20:26:48 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
if (video_font_driver)
|
|
|
|
return;
|
2016-10-18 23:07:00 +00:00
|
|
|
|
2017-01-10 20:26:48 +00:00
|
|
|
video_font_driver = font_driver_init_first(video_data,
|
2017-01-14 20:02:30 +00:00
|
|
|
*settings->path.font ? settings->path.font : NULL,
|
|
|
|
settings->video.font_size, threading_hint, api);
|
2017-01-10 20:26:48 +00:00
|
|
|
|
|
|
|
if (!video_font_driver)
|
|
|
|
RARCH_ERR("[font]: Failed to initialize OSD font.\n");
|
2016-10-18 23:07:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void font_driver_free_osd(void)
|
|
|
|
{
|
2017-01-10 20:26:48 +00:00
|
|
|
if (video_font_driver)
|
|
|
|
font_driver_free(video_font_driver);
|
2016-10-18 23:07:00 +00:00
|
|
|
|
2017-01-10 20:26:48 +00:00
|
|
|
video_font_driver = NULL;
|
2016-10-18 23:07:00 +00:00
|
|
|
}
|