diff options
author | Brian Paul <[email protected]> | 2006-10-18 18:35:09 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-10-18 18:35:09 +0000 |
commit | ccb64bbb2a32761efa076ebafa7ccdaf2d412b0e (patch) | |
tree | 8106d379716805f2eca690bb3e4d5e8a04c00a23 /src/mesa/main/dd.h | |
parent | 4e4c0bbef7a795d73685794e3329ea81654924b5 (diff) |
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().
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 716c13ca28e..a1999ac76d7 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 ); /*@}*/ |