Add a comment about Matrix4Impl

This commit is contained in:
Christian Semmler 2023-11-19 08:40:37 -05:00 committed by Nathan M Gilbert
parent ab6d4f1f77
commit 523e91e10c

View File

@ -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;
};