From 48735adf7b2c038610aa5b87601fe9a3ccc7d599 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 14 Jul 2024 00:50:45 +0100 Subject: [PATCH] Remove unused data type --- src/rasteriser/rasteriser.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/rasteriser/rasteriser.c b/src/rasteriser/rasteriser.c index 9c9a8a7..add5b5a 100644 --- a/src/rasteriser/rasteriser.c +++ b/src/rasteriser/rasteriser.c @@ -11,11 +11,6 @@ #include #include -typedef struct { - vec3f_t point; - f32 h; -} segment_intersection_result_t; - internal void render_instance(window_t *wnd, const rasteriser_scene_t *scene, Arena *arena, mat4x4f_t camera_matrix, mat3x4f_t projection_matrix,