mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-21 02:10:17 +01:00
update some tests for visual bit depths to use renderbuffers
This commit is contained in:
parent
2486267dda
commit
9c4fd26bca
2 changed files with 6 additions and 5 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue