From: Roland Scheidegger Date: Sat, 5 Jun 2010 14:49:51 +0000 (+0200) Subject: i915g: fix bug in ds clear logic (still disabled) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b6cd0712e9961c5cfbc94b5e59467ed90aeb3a2f;p=mesa.git i915g: fix bug in ds clear logic (still disabled) --- diff --git a/src/gallium/drivers/i915/i915_surface.c b/src/gallium/drivers/i915/i915_surface.c index 7869be8f682..f40876e708e 100644 --- a/src/gallium/drivers/i915/i915_surface.c +++ b/src/gallium/drivers/i915/i915_surface.c @@ -143,8 +143,8 @@ i915_clear_depth_stencil(struct pipe_context *pipe, /* XXX presumably this does read-modify-write (otherwise this won't work anyway). Hence will only want to do it if really have stencil and it isn't cleared */ - if (!((clear_flags & PIPE_CLEAR_STENCIL) || - (dst->format != PIPE_FORMAT_Z24_UNORM_S8_USCALED))) + if ((clear_flags & PIPE_CLEAR_STENCIL) || + (dst->format != PIPE_FORMAT_Z24_UNORM_S8_USCALED)) mask |= XY_COLOR_BLT_WRITE_ALPHA; i915_fill_blit( i915_context(pipe),