mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-09-13 09:16:14 -07:00
vkd3d/state: Replace ERR with WARN in vkd3d_validate_descriptor_set_count().
This commit is contained in:
parent
207664baca
commit
5ebbba6fff
Notes:
Henri Verbeet
2024-09-10 21:57:04 +02:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1048
@ -738,7 +738,7 @@ static bool vkd3d_validate_descriptor_set_count(struct d3d12_device *device, uns
|
|||||||
if (set_count > max_count)
|
if (set_count > max_count)
|
||||||
{
|
{
|
||||||
/* NOTE: If maxBoundDescriptorSets is < 9, try VKD3D_CONFIG=virtual_heaps */
|
/* NOTE: If maxBoundDescriptorSets is < 9, try VKD3D_CONFIG=virtual_heaps */
|
||||||
ERR("Required descriptor set count exceeds maximum allowed count of %u.\n", max_count);
|
WARN("Required descriptor set count exceeds maximum allowed count of %u.\n", max_count);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user