shithub: wipeout

Download patch

ref: 426d3b62933d36d8344fba9aecd1acbd9d4c564a
parent: 3526148d5f8911b5e2ee321b8fe8ef35135ccd62
author: Jacob Moody <moody@posixcafe.org>
date: Fri Aug 25 19:26:23 EDT 2023

cleanup small code smell

--- a/src/render_software.c
+++ b/src/render_software.c
@@ -240,12 +240,6 @@
 
 // -----------------------------------------------------------------------------
 
-
-#define lerp(a, b, t) ({ \
-		__typeof__(a) _a = a; \
-		_a + ((b) - _a) * (t); \
-	})
-
 static inline rgba_t color_mix(rgba_t in, rgba_t out) {
 	uint8_t _a, _za, _zb, _zc;