From 3e9c46f82430d7bb609cebb57be17c26cba4acb5 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Mon, 16 Mar 2026 20:59:04 +0200 Subject: chore: Rework renderer functions to use a struct instead of different arguments --- AnimationInterpolate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'AnimationInterpolate.h') diff --git a/AnimationInterpolate.h b/AnimationInterpolate.h index c033525..4e83054 100644 --- a/AnimationInterpolate.h +++ b/AnimationInterpolate.h @@ -15,7 +15,7 @@ struct A_Interpolate { 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); +ARGB A_Interpolate(const Animation* anim, PixelRendererParams params); void AO_LineInterpolate(void* valueLine, const void* initialLine, const void* finalLine, double percentage); -- cgit v1.2.3