fixed Width/Height typo (Jeff Hartmann)

This commit is contained in:
Brian Paul 2001-05-17 20:18:45 +00:00
parent 1341f40dfe
commit 758a21f104
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: s_stencil.c,v 1.11 2001/03/19 02:25:36 keithw Exp $ */
/* $Id: s_stencil.c,v 1.12 2001/05/17 20:18:45 brianp Exp $ */
/*
* Mesa 3-D graphics library
@ -1276,7 +1276,7 @@ clear_hardware_stencil_buffer( GLcontext *ctx )
else {
/* clear whole buffer without masking */
const GLint width = ctx->DrawBuffer->Width;
const GLint height = ctx->DrawBuffer->Width;
const GLint height = ctx->DrawBuffer->Height;
const GLint x = ctx->DrawBuffer->_Xmin;
GLstencil stencil[MAX_WIDTH];
GLint y, i;