mesa: return INVALID_VALUE from ClientWaitSync if flags contains an unsupported flag
[mesa.git] / src / mesa / main / clip.h
index d53afb45bdf6f9f1c3c2c8520e56f5d7999177f0..a8e6d768758ccd50fa8f112df0b31b31ba89513e 100644 (file)
 #ifndef CLIP_H
 #define CLIP_H
 
-#include "mtypes.h"
+#include "glheader.h"
 
-extern void GLAPIENTRY 
-_mesa_ClipPlane( GLenum plane, const GLdouble *equation );
+struct gl_context;
 
-extern void GLAPIENTRY 
-_mesa_GetClipPlane( GLenum plane, GLdouble *equation );
+extern void
+_mesa_update_clip_plane(struct gl_context *ctx, GLuint plane);
 
 extern void GLAPIENTRY 
-_mesa_CullParameterfvEXT (GLenum cap, GLfloat *v);
+_mesa_ClipPlane( GLenum plane, const GLdouble *equation );
 
 extern void GLAPIENTRY 
-_mesa_CullParameterdvEXT (GLenum cap, GLdouble *v);
-
+_mesa_GetClipPlane( GLenum plane, GLdouble *equation );
 
 #endif