From: Brian Paul Date: Fri, 15 Jan 2010 21:25:30 +0000 (-0700) Subject: swrast: add missing call to _swrast_depth_bounds_test() X-Git-Tag: 062012170305~12852^2~1452^2~153 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c5aa02e2086f5e79630cdffec804a3e9de0d966;p=profile%2Fivi%2Fmesa.git swrast: add missing call to _swrast_depth_bounds_test() We were calling this from the CI span function, but not the RGBA span function. I don't know of a test program for the GL_EXT_depth_bounds_test extension... --- diff --git a/src/mesa/swrast/s_span.c b/src/mesa/swrast/s_span.c index 1a51d4f..07248c7 100644 --- a/src/mesa/swrast/s_span.c +++ b/src/mesa/swrast/s_span.c @@ -1316,6 +1316,13 @@ _swrast_write_rgba_span( GLcontext *ctx, SWspan *span) ASSERT(span->end <= MAX_WIDTH); + /* Depth bounds test */ + if (ctx->Depth.BoundsTest && fb->Visual.depthBits > 0) { + if (!_swrast_depth_bounds_test(ctx, span)) { + return; + } + } + #ifdef DEBUG /* Make sure all fragments are within window bounds */ if (span->arrayMask & SPAN_XY) {