mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 11:08:03 +02:00
remove stray references to ctx->Depth.OcclusionTest
This commit is contained in:
parent
8bc0b3f961
commit
2735b33638
5 changed files with 4 additions and 9 deletions
|
|
@ -624,8 +624,7 @@ i830TryTextureDrawPixels( GLcontext *ctx,
|
|||
!ctx->Color.ColorMask[2] ||
|
||||
!ctx->Color.ColorMask[3] ||
|
||||
ctx->Color.ColorLogicOpEnabled ||
|
||||
ctx->Texture._EnabledUnits ||
|
||||
ctx->Depth.OcclusionTest) {
|
||||
ctx->Texture._EnabledUnits) {
|
||||
fprintf(stderr, "%s: other tests failed\n", __FUNCTION__);
|
||||
return GL_FALSE;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -86,8 +86,7 @@ check_color_per_fragment_ops( const GLcontext *ctx )
|
|||
!ctx->Color.ColorMask[2] ||
|
||||
!ctx->Color.ColorMask[3] ||
|
||||
ctx->Color.ColorLogicOpEnabled ||
|
||||
ctx->Texture._EnabledUnits ||
|
||||
ctx->Depth.OcclusionTest
|
||||
ctx->Texture._EnabledUnits
|
||||
) &&
|
||||
ctx->Current.RasterPosValid);
|
||||
|
||||
|
|
|
|||
|
|
@ -140,8 +140,7 @@ check_color_per_fragment_ops( const GLcontext *ctx )
|
|||
!ctx->Color.ColorMask[2] ||
|
||||
!ctx->Color.ColorMask[3] ||
|
||||
ctx->Color.ColorLogicOpEnabled ||
|
||||
ctx->Texture._EnabledUnits ||
|
||||
ctx->Depth.OcclusionTest
|
||||
ctx->Texture._EnabledUnits
|
||||
) &&
|
||||
ctx->Current.RasterPosValid &&
|
||||
ctx->Pixel.ZoomX == 1.0F &&
|
||||
|
|
|
|||
|
|
@ -93,8 +93,7 @@ check_color_per_fragment_ops( const GLcontext *ctx )
|
|||
!ctx->Color.ColorMask[2] ||
|
||||
!ctx->Color.ColorMask[3] ||
|
||||
ctx->Color.ColorLogicOpEnabled ||
|
||||
ctx->Texture._EnabledUnits ||
|
||||
ctx->Depth.OcclusionTest
|
||||
ctx->Texture._EnabledUnits
|
||||
) &&
|
||||
ctx->Current.RasterPosValid);
|
||||
|
||||
|
|
|
|||
|
|
@ -618,7 +618,6 @@ tdfx_drawpixels_R8G8B8A8(GLcontext * ctx, GLint x, GLint y,
|
|||
!ctx->Color.ColorMask[3] ||
|
||||
ctx->Color.ColorLogicOpEnabled ||
|
||||
ctx->Texture._EnabledUnits ||
|
||||
ctx->Depth.OcclusionTest ||
|
||||
fxMesa->Fallback)
|
||||
{
|
||||
_swrast_DrawPixels( ctx, x, y, width, height, format, type,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue