mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-15 08:30:42 +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> (cherry picked from commitf3c53cf66b)
This commit is contained in:
parent
7e42c6e949
commit
d20d30442c
2 changed files with 8 additions and 3 deletions
|
|
@ -674,7 +674,7 @@
|
|||
"description": "nvk: Disable large pages for now",
|
||||
"nominated": true,
|
||||
"nomination_type": 2,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "cabfdb4404ad65b2a6a2a3b469e5e09d9b63f96a",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -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