aboutsummaryrefslogtreecommitdiff
path: root/src/render_cpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render_cpu.h')
-rw-r--r--src/render_cpu.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/render_cpu.h b/src/render_cpu.h
index 7abbdc4..ab50766 100644
--- a/src/render_cpu.h
+++ b/src/render_cpu.h
@@ -48,6 +48,7 @@ typedef struct t_args {
CpuConfig *config_cpu;
u32 rendercnt;
float ft;
+int t_old_cpu;
d64 x_min, x_max, y_min, y_max;
d64 x_min_s, x_max_s, y_min_s, y_max_s;
@@ -55,6 +56,9 @@ d64 x_min_s, x_max_s, y_min_s, y_max_s;
void init_cpu(CpuConfig *config);
void render_cpu(void);
void idle_cpu(void);
+void idle_cpu_dummy(void);
+void keyboard_cpu(unsigned char key, int mouseX, int mouseY);
+void mouse_cpu(int button, int state, int x, int y);
void calculate(d64 x_min, d64 y_min, d64 x_max, d64 y_max, u32 (*sfunc) (d64, d64, u32), u32 *arr);
void calculate_t(void *args);