From 8db547afec26ba3067b23120c006ea7c2bb1b4ba Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 4 Sep 2024 10:36:32 +0900 Subject: [PATCH] [ruamoko] Remove hack-in matrix type No need for it now, either. --- ruamoko/include/scene.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ruamoko/include/scene.h b/ruamoko/include/scene.h index 0958f8d7c..322ef6cb6 100644 --- a/ruamoko/include/scene.h +++ b/ruamoko/include/scene.h @@ -1,11 +1,6 @@ #ifndef __ruamoko_scene_h #define __ruamoko_scene_h -//FIXME this should be a native type so it can be used in math -typedef struct { - vec4 col[4]; -} mat4x4; - typedef struct light_s { vec4 color; vec4 position;