]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_shared.c
add a "freeslots" field to the host cache
[xonotic/darkplaces.git] / vid_shared.c
index fda1757c49917bc2e6c464253599aa5ffff9b987..c96fd0c2e66fd1290b52ae0543f02efa730776f5 100644 (file)
@@ -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}
 };