diff options
author | Brian Paul <[email protected]> | 2006-04-25 22:55:19 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-04-25 22:55:19 +0000 |
commit | 9c4fd26bcab7e4a5bd97a56deff89b8ea0ae5f1d (patch) | |
tree | 94abae129c42a19631325572ab53e066e74fb6d4 /src/mesa/swrast/s_triangle.c | |
parent | 2486267dda524b612879386aa5cea2bef98602ff (diff) |
update some tests for visual bit depths to use renderbuffers
Diffstat (limited to 'src/mesa/swrast/s_triangle.c')
-rw-r--r-- | src/mesa/swrast/s_triangle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_triangle.c b/src/mesa/swrast/s_triangle.c index f2703723459..a1cbd881a73 100644 --- a/src/mesa/swrast/s_triangle.c +++ b/src/mesa/swrast/s_triangle.c @@ -914,7 +914,7 @@ fast_persp_span(GLcontext *ctx, struct sw_span *span, return; \ } #define RENDER_SPAN( span ) \ - if (ctx->Visual.depthBits <= 16) { \ + if (rb->DepthBits <= 16) { \ GLuint i; \ const GLushort *zRow = (const GLushort *) \ rb->GetPointer(ctx, rb, span.x, span.y); \ @@ -1110,7 +1110,7 @@ _swrast_choose_triangle( GLcontext *ctx ) && ctx->Depth.Mask == GL_TRUE) || swrast->_RasterMask == TEXTURE_BIT) && ctx->Polygon.StippleFlag == GL_FALSE - && ctx->Visual.depthBits <= 16) { + && ctx->DrawBuffer->Visual.depthBits <= 16) { if (swrast->_RasterMask == (DEPTH_BIT | TEXTURE_BIT)) { USE(simple_z_textured_triangle); } |