mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
nvk: Adjust maxFragmentCombinedOutputResources to match max descriptors limit
This was set to the lowest allowed value by spec but it should really be
matching the max descriptors limit.
Cc: mesa-stable
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/15249 for NVK
Signed-off-by: Mary Guillemard <mary@mary.zone>
Reviewed-by: Mel Henning <mhenning@darkrefraction.com>
(cherry picked from commit 13f98d8658)
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40979>
This commit is contained in:
parent
ecdb0c153c
commit
dc1f5880e7
2 changed files with 2 additions and 2 deletions
|
|
@ -684,7 +684,7 @@
|
|||
"description": "nvk: Adjust maxFragmentCombinedOutputResources to match max descriptors limit",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null,
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -835,7 +835,7 @@ nvk_get_device_properties(const struct nvk_instance *instance,
|
|||
.maxFragmentInputComponents = 128,
|
||||
.maxFragmentOutputAttachments = NVK_MAX_RTS,
|
||||
.maxFragmentDualSrcAttachments = 1,
|
||||
.maxFragmentCombinedOutputResources = 16,
|
||||
.maxFragmentCombinedOutputResources = NVK_MAX_RTS + NVK_MAX_DESCRIPTORS,
|
||||
/* Nvidia limits this to 48kB for consistency reasons, we could lift the
|
||||
* limit if we wanted to.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue