summaryrefslogtreecommitdiffstats
path: root/Smoke/glyphs.c
diff options
context:
space:
mode:
Diffstat (limited to 'Smoke/glyphs.c')
-rw-r--r--Smoke/glyphs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Smoke/glyphs.c b/Smoke/glyphs.c
index c4466df..6d562bf 100644
--- a/Smoke/glyphs.c
+++ b/Smoke/glyphs.c
@@ -23,7 +23,7 @@ static float glyphs_alpha = 0.5f;
static int glyphs_dataset_color = DATASET_RHO;
static int glyphs_dataset_direction = DATASET_RHO;
-static fftw_real *glyphs_field;
+static fftw_real *glyphs_frame;
void glyphs_set_render(int render_glyphs)
@@ -86,14 +86,14 @@ int glyphs_get_dataset_direction(void)
return glyphs_dataset_direction;
}
-void glyphs_set_field(fftw_real *field)
+void glyphs_set_frame(fftw_real *frame)
{
- glyphs_field = field;
+ glyphs_frame = frame;
}
-fftw_real *glyphs_get_field(void)
+fftw_real *glyphs_get_frame(void)
{
- return glyphs_field;
+ return glyphs_frame;
}