surf.dim = ISL_SURF_DIM_2D;
}
- /* Blorp doesn't support HiZ in any of the blit or slow-clear paths */
- assert(!isl_aux_usage_has_hiz(surface->aux_usage));
+ if (isl_aux_usage_has_hiz(surface->aux_usage)) {
+ /* BLORP doesn't render with depth so we can't use HiZ */
+ assert(!is_render_target);
+ /* We can't reinterpret HiZ */
+ assert(surface->surf.format == surface->view.format);
+ }
enum isl_aux_usage aux_usage = surface->aux_usage;
isl_channel_mask_t write_disable_mask = 0;
dst_level, dst_layer, dst_x0, dst_y0, dst_x1, dst_y1,
mirror_x, mirror_y);
+ if (src_format == MESA_FORMAT_NONE)
+ src_format = src_mt->format;
+
+ if (dst_format == MESA_FORMAT_NONE)
+ dst_format = dst_mt->format;
+
if (!decode_srgb)
src_format = _mesa_get_srgb_format_linear(src_format);