summaryrefslogtreecommitdiffstats
path: root/Smoke/glyphs.h
blob: fa97fe690af9a824c96fa6c0e6e49f9e2b3d3521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef _GLYPHS_H
#define _GLYPHS_H

void glyphs_set_render(int render_glyphs);
int glyphs_get_render(void);

void glyphs_set_num_colors(int num_colors);
int glyphs_get_num_colors(void);

void glyphs_set_colormap(int colormap);
int glyphs_get_colormap(void);

void glyphs_set_alpha(float alpha);
float glyphs_get_alpha(void);

void glyphs_set_dataset_color(int dataset);
int glyphs_get_dataset_color(void);

void glyphs_set_dataset_direction(int dataset);
int glyphs_get_dataset_direction(void);

void glyphs_set_frame(fftw_real *frame);
fftw_real *glyphs_get_frame(void);

struct color4f glyphs_get_color(float value);
#endif