From c5f2b7e8a16aeb1ea91ea46c1b519a33024ba641 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 12 Jul 2015 04:01:22 +0200 Subject: [PATCH] rename gl_mut_coords to gfx_mut_coords --- gfx/drivers/gl_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/drivers/gl_common.h b/gfx/drivers/gl_common.h index ce47325777..7c35e2868c 100644 --- a/gfx/drivers/gl_common.h +++ b/gfx/drivers/gl_common.h @@ -215,18 +215,18 @@ typedef struct gfx_coords unsigned vertices; } gfx_coords_t; -typedef struct gl_mut_coords +typedef struct gfx_mut_coords { float *vertex; float *color; float *tex_coord; float *lut_tex_coord; unsigned vertices; -} gl_mut_coords_t; +} gfx_mut_coords_t; typedef struct gfx_coord_array { - gl_mut_coords_t coords; + gfx_mut_coords_t coords; unsigned allocated; } gfx_coord_array_t;