diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-10-31 14:49:46 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-10-31 14:49:46 -0600 |
commit | f36372f0b27bdb7f99c3e5615eaf156b492dbd1d (patch) | |
tree | 0f45bd0277d5d6b4f3b84b8a3ee0a9507aa5da1e /src/mesa/pipe/xlib/xmesaP.h | |
parent | 4a13a550e0f0fc12072f117229230175af30de24 (diff) |
Start removing old driver funcs like ColorMask, ClearColor, etc.
Diffstat (limited to 'src/mesa/pipe/xlib/xmesaP.h')
-rw-r--r-- | src/mesa/pipe/xlib/xmesaP.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/pipe/xlib/xmesaP.h b/src/mesa/pipe/xlib/xmesaP.h index 9e0c79a139..9a91aebc64 100644 --- a/src/mesa/pipe/xlib/xmesaP.h +++ b/src/mesa/pipe/xlib/xmesaP.h @@ -54,7 +54,8 @@ struct xmesa_renderbuffer; /* Function pointer for clearing color buffers */ typedef void (*ClearFunc)( GLcontext *ctx, struct xmesa_renderbuffer *xrb, - GLint x, GLint y, GLint width, GLint height ); + GLint x, GLint y, GLint width, GLint height, + GLuint value ); @@ -585,7 +586,7 @@ extern void xmesa_clear(struct pipe_context *pipe, struct pipe_surface *ps, GLuint value); extern void -xmesa_clear_buffers(GLcontext *ctx, GLbitfield buffers); +xmesa_clear_buffers(GLcontext *ctx, GLbitfield buffers, GLuint value); extern struct pipe_context * xmesa_create_softpipe(XMesaContext xm); |