From d549e96032614b275fab7b2810638bf9b360fcf2 Mon Sep 17 00:00:00 2001 From: 0scar Date: Mon, 29 Jan 2024 13:43:52 +0100 Subject: Intialize GLFW and GLEW --- src/utils.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index f91ef4d..0f3d218 100644 --- a/src/utils.c +++ b/src/utils.c @@ -6,6 +6,8 @@ #include #include +/* These should all be in some external facing module "tools" */ + f32 lerp(f32 dt, f32 a, f32 b) { return (a * (1.0f - dt)) + (b * dt); } i32 int_lerp(f32 dt, i32 a, i32 b) { -- cgit v1.3