From 2202e87c466803eeaddd974006aa9950d8e0d067 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sun, 15 Mar 2026 12:23:21 +0200 Subject: feat!: Split into separate files --- AnimationInterpolate.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AnimationInterpolate.h (limited to 'AnimationInterpolate.h') diff --git a/AnimationInterpolate.h b/AnimationInterpolate.h new file mode 100644 index 0000000..e9fcd57 --- /dev/null +++ b/AnimationInterpolate.h @@ -0,0 +1,22 @@ +#ifndef _ANIMATION_INTERPOLATE +#define _ANIMATION_INTERPOLATE + +#include "Animation.h" + +struct A_Interpolate { + PixelRenderer callback; + void* priv; + + u32 startFrame; + u32 endFrame; + void* value; + void* initialState; + void* finalState; + void (*interpolate)(void* value, const void* initialState, const void* finalState, double percentage); +}; + +ARGB A_Interpolate(const Animation* anim, u32 frameIndex, ARGB pixel, i32 r, i32 c, void* priv); + +void AO_LineInterpolate(void* valueLine, const void* initialLine, const void* finalLine, double percentage); + +#endif /* _ANIMATION_INTERPOLATE */ -- cgit v1.2.3