diff --git a/src/intel/blorp/blorp_clear.c b/src/intel/blorp/blorp_clear.c index e79f602261e..7c7796d0b12 100644 --- a/src/intel/blorp/blorp_clear.c +++ b/src/intel/blorp/blorp_clear.c @@ -832,8 +832,8 @@ blorp_can_hiz_clear_depth(const struct gen_device_info *devinfo, const uint32_t haligned_x1 = ALIGN(x1, surf->image_alignment_el.w); const uint32_t valigned_y1 = ALIGN(y1, surf->image_alignment_el.h); const bool unaligned = (slice_x0 + x0) % 16 || (slice_y0 + y0) % 8 || - max_x1_y1 ? haligned_x1 % 16 || valigned_y1 % 8 : - x1 % 16 || y1 % 8; + (max_x1_y1 ? haligned_x1 % 16 || valigned_y1 % 8 : + x1 % 16 || y1 % 8); const bool alignment_used = surf->levels > 1 || surf->logical_level0_px.depth > 1 || surf->logical_level0_px.array_len > 1;