mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-02 11:00:27 +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>
(cherry picked from commit bd7777aee6)
This commit is contained in:
parent
c966a7abe4
commit
05f249ca93
2 changed files with 2 additions and 2 deletions
|
|
@ -2084,7 +2084,7 @@
|
|||
"description": "nvk: Fix compute class comparison in dispatch indirect",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null,
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -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