Move struct to gl_common.h

This commit is contained in:
twinaphex 2015-03-29 21:44:37 +02:00
parent ed5891b8e8
commit bbfedcedae
2 changed files with 6 additions and 6 deletions

View File

@ -23,12 +23,6 @@
struct font_glyph;
/* XXX: please include gl_common.h before this file */
typedef struct gl_raster_block {
bool fullscreen;
gl_coord_array_t carr;
} gl_font_raster_block_t;
typedef struct gl_font_renderer
{
void *(*init)(void *data, const char *font_path, float font_size);

View File

@ -254,6 +254,12 @@ typedef struct gl_coord_array
unsigned allocated;
} gl_coord_array_t;
typedef struct gl_raster_block
{
bool fullscreen;
gl_coord_array_t carr;
} gl_font_raster_block_t;
struct gl_font_renderer;
typedef struct gl