From: quzar <qu...@us...> - 2024-08-11 00:52:21
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The KallistiOS port of OpenGL.". The branch, master has been updated via 8374cbee6c350612f38aeedf9a0af541e83aae76 (commit) from 8a4be75e53e7520ff558df1e2b2736db0f4abbb4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 8374cbee6c350612f38aeedf9a0af541e83aae76 Author: Falco Girgis <gyr...@gm...> Date: Sat Aug 10 16:05:53 2024 -0500 Correct KGL header usage (#3) * Ensure pointing to <KGL/GL.h> rather than the <GL/GL.h> which will pick up GLdc. * Roll back enabling of DMA from (#2) ----------------------------------------------------------------------- Summary of changes: gl-sh4.h | 2 -- include/glu.h | 2 +- include/glut.h | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/gl-sh4.h b/gl-sh4.h index a669995..1ca91ed 100644 --- a/gl-sh4.h +++ b/gl-sh4.h @@ -11,8 +11,6 @@ #include <arch/args.h> -#define GL_KOS_USE_DMA 1 - typedef float vector3f[3]; /* 3 float vector */ typedef float matrix4f[4][4]; /* 4x4 float matrix */ diff --git a/include/glu.h b/include/glu.h index 6397441..c740dec 100644 --- a/include/glu.h +++ b/include/glu.h @@ -17,7 +17,7 @@ __BEGIN_DECLS #ifndef BUILD_LIBGL -#include <GL/gl.h> +#include <KGL/gl.h> #endif #define GLU_FALSE 0 diff --git a/include/glut.h b/include/glut.h index 91e4b04..b115bc2 100644 --- a/include/glut.h +++ b/include/glut.h @@ -13,7 +13,7 @@ __BEGIN_DECLS #ifndef BUILD_LIBGL -#include <GL/gl.h> +#include <KGL/gl.h> #endif /* Flush the Submitted Primitive Data to the GPU for render */ hooks/post-receive -- The KallistiOS port of OpenGL. |