X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=vid_shared.c;h=c96fd0c2e66fd1290b52ae0543f02efa730776f5;hp=fda1757c49917bc2e6c464253599aa5ffff9b987;hb=a255e13ec710fbfbf541ef09b2195253dea80658;hpb=b5d57c87b4695ebb86b7f7c23e6e9cd247010cc8;ds=sidebyside 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} };