mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 01:10:16 +01:00
radv: remove useless masking in radv_cs_emit_indirect_mesh_draw_packet()
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29830>
This commit is contained in:
parent
b2ff08800e
commit
d2b1d38392
1 changed files with 1 additions and 1 deletions
|
|
@ -9840,7 +9840,7 @@ radv_cs_emit_indirect_mesh_draw_packet(struct radv_cmd_buffer *cmd_buffer, uint3
|
|||
else
|
||||
radeon_emit(cs, S_4C2_DRAW_INDEX_ENABLE(draw_id_enable) | S_4C2_COUNT_INDIRECT_ENABLE(!!count_va));
|
||||
radeon_emit(cs, draw_count);
|
||||
radeon_emit(cs, count_va & 0xFFFFFFFF);
|
||||
radeon_emit(cs, count_va);
|
||||
radeon_emit(cs, count_va >> 32);
|
||||
radeon_emit(cs, stride);
|
||||
radeon_emit(cs, V_0287F0_DI_SRC_SEL_AUTO_INDEX);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue