summaryrefslogtreecommitdiffstats
path: root/Smoke/glyphs.c
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2008-01-04 17:26:22 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2008-01-04 17:26:22 (GMT)
commitcf983359977dbea21b49747e3430725209a804ee (patch)
treec69181513a7ba12d365330b614b3b7586410f6e4 /Smoke/glyphs.c
parentb12d6854cbb458c3de11266efefa8fb2ea11a1cf (diff)
download2iv35-cf983359977dbea21b49747e3430725209a804ee.zip
2iv35-cf983359977dbea21b49747e3430725209a804ee.tar.gz
2iv35-cf983359977dbea21b49747e3430725209a804ee.tar.bz2
force/vel/rho now selectable (for flowvis)
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;
}