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
/* * render.h * * Created on: 15.01.2018 * Author: Superleo1810 */ #ifndef RENDER_H_ #define RENDER_H_ #include "defs.h" #include "render_opencl.h" #include "render_cpu.h" #include <math.h> #include "config.h" config_t *_config; u32 *s_arr; GLuint tex; d64 zoom_func(d64 ft, d64 s); void init_render(config_t *config); void show_render(); #endif /* RENDER_H_ */