summaryrefslogtreecommitdiffstats
path: root/Smoke/template.h
blob: b4102e2071cc7aaebee43581a498a63dc3f898d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _TEMPLATE_H
#define _TEMPLATE_H

void template_set_render(int render_template);
int template_get_render(void);

void template_set_num_colors(int num_colors);
int template_get_num_colors(void);

void template_set_colormap(int colormap);
inttemplate _get_colormap(void);

void template_set_alpha(float alpha);
float template_get_alpha(void);

void template_set_frame(fftw_real *frame);
fftw_real *template_get_frame(void);

struct color4f template_get_color(float value);

#endif