From bdb86fa1d6f1d2f11e05a931db7597310b1fe9b5 Mon Sep 17 00:00:00 2001 From: vimene Date: Fri, 26 Dec 2025 22:39:08 +0100 Subject: started working on implementing textures --- src/math/mat4.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/math') diff --git a/src/math/mat4.hpp b/src/math/mat4.hpp index cbbee9a..77c865a 100644 --- a/src/math/mat4.hpp +++ b/src/math/mat4.hpp @@ -7,7 +7,8 @@ namespace engine::math { -// values are represented in memory as column first, meaning values[1] is the first column, 2nd row +// values are represented in memory as column-major order, meaning values[1] is the first column, +// 2nd row struct Matrix4 { static constexpr Matrix4 idty() { return { -- cgit v1.2.3