mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
nvk: Fix a Volta check
Fixes: e162c2e78e ("nvk: Use VM_BIND for contiguous heaps instead of copying")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34127>
This commit is contained in:
parent
90b2137ac5
commit
79294fb95a
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ nvk_push_dispatch_state_init(struct nvk_queue *queue, struct nv_push *p)
|
|||
if (pdev->info.cls_compute == MAXWELL_COMPUTE_A)
|
||||
P_IMMD(p, NVB0C0, SET_SELECT_MAXWELL_TEXTURE_HEADERS, V_TRUE);
|
||||
|
||||
if (pdev->info.cls_eng3d < VOLTA_COMPUTE_A) {
|
||||
if (pdev->info.cls_compute < VOLTA_COMPUTE_A) {
|
||||
uint64_t shader_base_addr =
|
||||
nvk_heap_contiguous_base_address(&dev->shader_heap);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue