radv: set state.vbo_misaligned_mask_invalid in radv_bind_vs_input_state

Found by inspection. Something probably hangs because of this, but I don't
know what.

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Fixes: c199a5160a ("radv: bind the VS input state for prologs created with GPL")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20913>
This commit is contained in:
Rhys Perry 2023-01-25 18:00:54 +00:00 committed by Marge Bot
parent 21f0fc65b2
commit 10a5035c83

View file

@ -6132,6 +6132,12 @@ radv_bind_vs_input_state(struct radv_cmd_buffer *cmd_buffer,
cmd_buffer->state.dynamic_vs_input = *src;
if (cmd_buffer->device->physical_device->rad_info.gfx_level == GFX6 ||
cmd_buffer->device->physical_device->rad_info.gfx_level >= GFX10) {
cmd_buffer->state.vbo_misaligned_mask = 0;
cmd_buffer->state.vbo_misaligned_mask_invalid = src->attribute_mask;
}
cmd_buffer->state.dirty |= RADV_CMD_DIRTY_DYNAMIC_VERTEX_INPUT;
}