X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=vid_shared.c;h=c96fd0c2e66fd1290b52ae0543f02efa730776f5;hb=fc5fe8b95af8c3e314abe62dc0727e5bd2efa04a;hp=fda1757c49917bc2e6c464253599aa5ffff9b987;hpb=4a0c55c2f53d3b18ae28eddb822a0c670636c0f9;p=xonotic%2Fdarkplaces.git diff --git a/vid_shared.c b/vid_shared.c index fda1757c..c96fd0c2 100644 --- a/vid_shared.c +++ b/vid_shared.c @@ -256,6 +256,9 @@ void (GLAPIENTRY *qglPolygonOffset)(GLfloat factor, GLfloat units); void (GLAPIENTRY *qglPolygonMode)(GLenum face, GLenum mode); void (GLAPIENTRY *qglPolygonStipple)(const GLubyte *mask); +void (GLAPIENTRY *qglClipPlane)(GLenum plane, const GLdouble *equation); +void (GLAPIENTRY *qglGetClipPlane)(GLenum plane, GLdouble *equation); + //[515]: added on 29.07.2005 void (GLAPIENTRY *qglLineWidth)(GLfloat width); void (GLAPIENTRY *qglPointSize)(GLfloat size); @@ -507,6 +510,8 @@ static dllfunction_t opengl110funcs[] = {"glPolygonOffset", (void **) &qglPolygonOffset}, {"glPolygonMode", (void **) &qglPolygonMode}, {"glPolygonStipple", (void **) &qglPolygonStipple}, + {"glClipPlane", (void **) &qglClipPlane}, + {"glGetClipPlane", (void **) &qglGetClipPlane}, {NULL, NULL} };