qm3x3,boxf debug, bugfixes
[vg.git] / src / vg / vg_platform.h
index 89315b65c86dee6765865811bc47343d5106f127..b0794baa7d955ea0b161e9011a0b1d46baf3eb80 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef VG_PLATFORM_H
+#define VG_PLATFORM_H
+
 /* Copyright (C) 2021-2022 Harry Godden (hgn) - All Rights Reserved */
 
 typedef uint8_t  u8;
@@ -19,7 +22,7 @@ typedef float         v3f[3];
 typedef float          v4f[4];
 typedef v2f                    m2x2f[2];
 typedef v3f                    m3x3f[3];
-typedef v3f                    m4x3f[4];   /* TODO why this is 4x4 too? */
+typedef v3f                    m4x3f[4];
 typedef v4f       m4x4f[4];
 typedef v3f                    boxf[2];
 
@@ -107,3 +110,5 @@ int vg_thread_run( void *pfunc, void *data )
        }
 #endif
 }
+
+#endif