From 3160fc517d7baea5cc34346cc6dead8f4027bf4d Mon Sep 17 00:00:00 2001 From: T_chan Date: Wed, 2 Feb 2022 09:22:23 +0000 Subject: [PATCH] declare glFogiv() --- include/GL/gl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/GL/gl.h b/include/GL/gl.h index 1c19df6..975bc1e 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -643,6 +643,7 @@ GLAPI void APIENTRY glFrustum(GLfloat left, GLfloat right, /* Fog Functions - client must enable GL_FOG for this to take effect */ GLAPI void APIENTRY glFogi(GLenum pname, GLint param); GLAPI void APIENTRY glFogf(GLenum pname, GLfloat param); +GLAPI void APIENTRY glFogiv(GLenum pname, const GLint* params); GLAPI void APIENTRY glFogfv(GLenum pname, const GLfloat *params); /* Lighting Functions - client must enable GL_LIGHTING for this to take effect */