mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-06 14:40:27 +01:00
nvk: Disable large pages for now
Reviewed-by: Mary Guillemard <mary@mary.zone>
Fixes: cabfdb4404 ("nvk: Enable compression")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39364>
This commit is contained in:
parent
4b1996b1c7
commit
f3c53cf66b
1 changed files with 7 additions and 2 deletions
|
|
@ -101,8 +101,13 @@ nvkmd_nouveau_try_create_pdev(struct _drmDevice *drm_device,
|
|||
.has_alloc_tiled = nouveau_ws_device_has_tiled_bo(ws_dev),
|
||||
.has_map_fixed = true,
|
||||
.has_overmap = true,
|
||||
.has_compression = ws_dev->nouveau_version >= 0x01000401 &&
|
||||
ws_dev->info.cls_eng3d >= TURING_A,
|
||||
/*
|
||||
* Disabled for now due to
|
||||
* https://gitlab.freedesktop.org/mesa/mesa/-/issues/14610
|
||||
* .has_compression = ws_dev->nouveau_version >= 0x01000401 &&
|
||||
* ws_dev->info.cls_eng3d >= TURING_A,
|
||||
*/
|
||||
.has_compression = false,
|
||||
};
|
||||
|
||||
/* We get this ourselves */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue