From ccb64bbb2a32761efa076ebafa7ccdaf2d412b0e Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 18 Oct 2006 18:35:09 +0000 Subject: Don't pass x/y/width/height to ctx->Driver.Accum(). Compute the region after we've locked (and possibly updated the buffer's size). Same thing is needed for ctx->Driver.Clear(). --- src/mesa/main/dd.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/mesa/main/dd.h') diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 716c13ca28..a1999ac76d 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -118,10 +118,9 @@ struct dd_function_table { */ /*@{*/ /** - * Execute glAccum command within the given scissor region. + * Execute glAccum command. */ - void (*Accum)( GLcontext *ctx, GLenum op, GLfloat value, - GLint xpos, GLint ypos, GLint width, GLint height ); + void (*Accum)( GLcontext *ctx, GLenum op, GLfloat value ); /*@}*/ -- cgit v1.2.3