anv: Only copy clear dwords if we're rendering to the first slice
Reviewed-by: Rafael Antognolli <rafael.antognolli@intel.com>
This commit is contained in:
@@ -3462,7 +3462,10 @@ cmd_buffer_begin_subpass(struct anv_cmd_buffer *cmd_buffer,
|
||||
assert(att_state->pending_clear_aspects == 0);
|
||||
}
|
||||
|
||||
if (att_state->pending_load_aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV) {
|
||||
if ((att_state->pending_load_aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV) &&
|
||||
image->planes[0].aux_surface.isl.size > 0 &&
|
||||
iview->planes[0].isl.base_level == 0 &&
|
||||
iview->planes[0].isl.base_array_layer == 0) {
|
||||
if (att_state->aux_usage != ISL_AUX_USAGE_NONE) {
|
||||
genX(copy_fast_clear_dwords)(cmd_buffer, att_state->color.state,
|
||||
image, VK_IMAGE_ASPECT_COLOR_BIT,
|
||||
|
||||
Reference in New Issue
Block a user