mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
vkd3d: Disable push descriptors when that's helpful to stay within 8 descriptor sets.
This commit is contained in:
committed by
Henri Verbeet
parent
3bf114f3c3
commit
ae772d40cf
Notes:
Henri Verbeet
2024-10-21 18:42:52 +02:00
Approved-by: Giovanni Mascellani (@giomasce) Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1202
@@ -19402,8 +19402,6 @@ static void test_descriptors_visibility(void)
|
||||
root_signature_desc.NumStaticSamplers = 2;
|
||||
root_signature_desc.pStaticSamplers = sampler_desc;
|
||||
hr = create_root_signature(device, &root_signature_desc, &context.root_signature);
|
||||
/* llvmpipe (from Mesa 24.0.4) has maxBoundDescriptorSet == 8, which is less than we need. */
|
||||
todo_if(is_llvmpipe_device(device))
|
||||
ok(SUCCEEDED(hr), "Failed to create root signature, hr %#x.\n", hr);
|
||||
|
||||
if (FAILED(hr))
|
||||
@@ -21155,8 +21153,6 @@ static void test_depth_stencil_sampling(void)
|
||||
root_signature_desc.NumStaticSamplers = 2;
|
||||
root_signature_desc.pStaticSamplers = sampler_desc;
|
||||
hr = create_root_signature(device, &root_signature_desc, &context.root_signature);
|
||||
/* llvmpipe (from Mesa 24.0.4) has maxBoundDescriptorSet == 8, which is less than we need. */
|
||||
todo_if(is_llvmpipe_device(device))
|
||||
ok(SUCCEEDED(hr), "Failed to create root signature, hr %#x.\n", hr);
|
||||
|
||||
if (FAILED(hr))
|
||||
|
Reference in New Issue
Block a user