summaryrefslogtreecommitdiffstats
path: root/Smoke/glyphs.c
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2008-01-10 20:52:19 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2008-01-10 20:52:19 (GMT)
commita003a02f8ae4f5bc14cbed9249b0fbfefdd2fd07 (patch)
tree8f3f61a0b2371a122c90835466895a45d4f7659a /Smoke/glyphs.c
parentf9e23896d3525e3dfe710585f6a88858cb88f8c6 (diff)
download2iv35-a003a02f8ae4f5bc14cbed9249b0fbfefdd2fd07.zip
2iv35-a003a02f8ae4f5bc14cbed9249b0fbfefdd2fd07.tar.gz
2iv35-a003a02f8ae4f5bc14cbed9249b0fbfefdd2fd07.tar.bz2
fx or vy get/setters added. mem probs fixed
Diffstat (limited to 'Smoke/glyphs.c')
-rw-r--r--Smoke/glyphs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Smoke/glyphs.c b/Smoke/glyphs.c
index c854e20..c93f9fa 100644
--- a/Smoke/glyphs.c
+++ b/Smoke/glyphs.c
@@ -22,7 +22,7 @@ static int glyphs_dataset_direction = DATASET_RHO;
static float glyphs_alpha = 1.0f;
static fftw_real *glyphs_frame_color;
-struct fftw_real_xy_p glyphs_frame_direction;
+struct fftw_real_xy glyphs_frame_direction;
void glyphs_set_render(int render_glyphs)
@@ -119,12 +119,12 @@ fftw_real *glyphs_get_frame_color(void)
return glyphs_frame_color;
}
-void glyphs_set_frames_direction(struct fftw_real_xy_p frame)
+void glyphs_set_frames_direction(struct fftw_real_xy frame)
{
glyphs_frame_direction = frame;
}
-struct fftw_real_xy_p glyphs_get_frames_direction(void)
+struct fftw_real_xy glyphs_get_frames_direction(void)
{
return glyphs_frame_direction;
}