diff options
author | Brian Paul <[email protected]> | 2000-04-11 20:42:22 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-04-11 20:42:22 +0000 |
commit | d0130a989a3b331eb8114f1ee4addb95ce31e0e2 (patch) | |
tree | 5e04dc0ace3827b6ac5367da1b6d1b06c60a5249 /src/mesa/main/drawpix.c | |
parent | 4fe34b27f641459acae8150cde927eb4952277ad (diff) |
clip depth/stencil spans to window bounds
Diffstat (limited to 'src/mesa/main/drawpix.c')
-rw-r--r-- | src/mesa/main/drawpix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index ad9ce929f10..184248c2706 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 ); } } } |