Make video_thread_wrapper.h not dependent on GL video font driver

This commit is contained in:
twinaphex 2015-03-28 19:44:03 +01:00
parent a532742b96
commit 66d2172004
1 changed files with 2 additions and 3 deletions

View File

@ -21,7 +21,6 @@
#include "../general.h"
#include <boolean.h>
#include <rthreads/rthreads.h>
#include "font_gl_driver.h"
enum thread_cmd
{
@ -172,10 +171,10 @@ typedef struct thread_video
struct
{
bool (*method)(const gl_font_renderer_t **font_driver,
bool (*method)(const void **font_driver,
void **font_handle, void *video_data, const char *font_path,
float font_size);
const gl_font_renderer_t **font_driver;
const void **font_driver;
void **font_handle;
void *video_data;
const char *font_path;