1
0
Fork 0

Move common visualizer keyframes into visualizer_keyframes.h

This commit is contained in:
Fred Sundvik 2017-04-05 10:14:24 +03:00
parent 64d63ab422
commit b7041d06ae
7 changed files with 54 additions and 12 deletions

View file

@ -230,12 +230,6 @@ void run_next_keyframe(keyframe_animation_t* animation, visualizer_state_t* stat
(*temp_animation.frame_functions[next_frame])(&temp_animation, &temp_state);
}
bool keyframe_no_operation(keyframe_animation_t* animation, visualizer_state_t* state) {
(void)animation;
(void)state;
return false;
}
// TODO: Optimize the stack size, this is probably way too big
static DECLARE_THREAD_STACK(visualizerThreadStack, 1024);
static DECLARE_THREAD_FUNCTION(visualizerThread, arg) {