From 9c4fd26bcab7e4a5bd97a56deff89b8ea0ae5f1d Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 25 Apr 2006 22:55:19 +0000 Subject: [PATCH] update some tests for visual bit depths to use renderbuffers --- src/mesa/swrast/s_buffers.c | 7 ++++--- src/mesa/swrast/s_triangle.c | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/mesa/swrast/s_buffers.c b/src/mesa/swrast/s_buffers.c index 9dace65..57f23ee 100644 --- a/src/mesa/swrast/s_buffers.c +++ b/src/mesa/swrast/s_buffers.c @@ -169,8 +169,8 @@ clear_ci_buffer(GLcontext *ctx, struct gl_renderbuffer *rb) ASSERT(!ctx->Visual.rgbMode); - ASSERT((ctx->Color.IndexMask & ((1 << ctx->Visual.indexBits) - 1)) - == (GLuint) ((1 << ctx->Visual.indexBits) - 1)); + ASSERT((ctx->Color.IndexMask & ((1 << rb->IndexBits) - 1)) + == (GLuint) ((1 << rb->IndexBits) - 1)); ASSERT(rb->PutMonoRow); @@ -221,7 +221,8 @@ clear_color_buffers(GLcontext *ctx) } } else { - const GLuint indexBits = (1 << ctx->Visual.indexBits) - 1; + struct gl_renderbuffer *rb = ctx->DrawBuffer->_ColorDrawBuffers[0][0]; + const GLuint indexBits = (1 << rb->IndexBits) - 1; if ((ctx->Color.IndexMask & indexBits) == indexBits) { masking = GL_FALSE; } diff --git a/src/mesa/swrast/s_triangle.c b/src/mesa/swrast/s_triangle.c index f270372..a1cbd88 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); } -- 2.7.4