mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
nvk: Fix compute class comparison in dispatch indirect
This works by coincidence rather than design. Reviewed-by: Mel Henning <mhenning@darkrefraction.com> Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34910>
This commit is contained in:
parent
693b55a4af
commit
bd7777aee6
1 changed files with 1 additions and 1 deletions
|
|
@ -512,7 +512,7 @@ nvk_CmdDispatchIndirect(VkCommandBuffer commandBuffer,
|
|||
}
|
||||
|
||||
struct nv_push *p;
|
||||
if (nvk_cmd_buffer_compute_cls(cmd) >= TURING_A) {
|
||||
if (nvk_cmd_buffer_compute_cls(cmd) >= TURING_COMPUTE_A) {
|
||||
p = nvk_cmd_buffer_push(cmd, 14);
|
||||
P_IMMD(p, NVC597, SET_MME_DATA_FIFO_CONFIG, FIFO_SIZE_SIZE_4KB);
|
||||
P_1INC(p, NV9097, CALL_MME_MACRO(NVK_MME_DISPATCH_INDIRECT));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue