add compile flags

This commit is contained in:
2025-09-11 00:20:33 +02:00
parent feb338673a
commit 67277caecc
2 changed files with 1 additions and 2 deletions
+1
View File
@@ -0,0 +1 @@
-Iglad/include
-2
View File
@@ -3,7 +3,6 @@
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "linmath.h"
@@ -120,7 +119,6 @@ void forge_run(parameters params) {
mat4x4 m, p, mvp;
mat4x4_identity(m);
// mat4x4_rotate_Z(m, m, (float) glfwGetTime());
mat4x4_ortho(p, 0, ratio, 0.0f, 1.0f, 1.0f, 0.0f);
mat4x4_mul(mvp, p, m);