radv: remove redundant push constant size alignment for DGC

It's already aligned to 16 bytes when the pipeline layout is created.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36753>
This commit is contained in:
Samuel Pitoiset
2025-08-12 16:28:32 +02:00
committed by Marge Bot
parent 3359386145
commit 771d4b55e8
+1 -1
View File
@@ -447,7 +447,7 @@ radv_get_sequence_size(const struct radv_indirect_command_layout *layout, const
}
if (need_copy) {
*upload_size += align(pipeline_layout->push_constant_size, 16);
*upload_size += pipeline_layout->push_constant_size;
}
}