From 68561e0404a4ad09e523129bca67cf6be8cec2fc Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Tue, 18 Jun 2024 18:14:14 -0400 Subject: [PATCH] Remove Broken Attributes --- include/GLES/gl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/GLES/gl.h b/include/GLES/gl.h index 92494e7..60f5fb7 100644 --- a/include/GLES/gl.h +++ b/include/GLES/gl.h @@ -148,7 +148,7 @@ void glDisable(GLenum cap); void glCullFace(GLenum mode); void glRotatef(GLfloat angle, GLfloat x, GLfloat y, GLfloat z); void glViewport(GLint x, GLint y, GLsizei width, GLsizei height); -__attribute__((unavailable)) void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz); +void glNormal3f(GLfloat nx, GLfloat ny, GLfloat nz); GLboolean glIsEnabled(GLenum cap); void glGetIntegerv(GLenum pname, GLint *data); void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *data);