From 523e91e10c401fd299842aec7010e3a946f7bcaa Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sun, 19 Nov 2023 08:40:37 -0500 Subject: [PATCH] Add a comment about Matrix4Impl --- LEGO1/realtime/matrix.h | 1 + 1 file changed, 1 insertion(+) diff --git a/LEGO1/realtime/matrix.h b/LEGO1/realtime/matrix.h index e5653650..4f65e50b 100644 --- a/LEGO1/realtime/matrix.h +++ b/LEGO1/realtime/matrix.h @@ -68,6 +68,7 @@ class Matrix4Impl { inline float& operator[](size_t idx) { return ((float*) m_data)[idx]; } protected: + // TODO: Currently unclear whether this class contains a Matrix4* or float*. Matrix4* m_data; };