From d0130a989a3b331eb8114f1ee4addb95ce31e0e2 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 11 Apr 2000 20:42:22 +0000 Subject: clip depth/stencil spans to window bounds --- src/mesa/main/drawpix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/main/drawpix.c') diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index ad9ce929f1..184248c270 100644 --- a/src/mesa/main/drawpix.c +++ b/src/mesa/main/drawpix.c @@ -1,4 +1,4 @@ -/* $Id: drawpix.c,v 1.18 2000/04/08 18:57:45 brianp Exp $ */ +/* $Id: drawpix.c,v 1.19 2000/04/11 20:42:22 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -479,7 +479,7 @@ draw_stencil_pixels( GLcontext *ctx, GLint x, GLint y, values, desty ); } else { - gl_write_stencil_span( ctx, (GLuint) drawWidth, x, y, values ); + _mesa_write_stencil_span( ctx, (GLuint) drawWidth, x, y, values ); } } } -- cgit v1.2.3