mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
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:
parent
21f0fc65b2
commit
10a5035c83
1 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue