wined3d: Set the "compareEnable" field of struct VkSamplerCreateInfo to either 0 or 1.
VkBool32 is (unfortunately) specified as 0/1, instead of zero/non-zero. Found
by the validation layers.
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit f969570c22
)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
parent
43e4f4b81e
commit
d0a38a32c7
|
@ -200,7 +200,7 @@ static void wined3d_sampler_vk_cs_init(void *object)
|
|||
sampler_desc.mipLodBias = desc->lod_bias;
|
||||
sampler_desc.anisotropyEnable = desc->max_anisotropy != 1;
|
||||
sampler_desc.maxAnisotropy = desc->max_anisotropy;
|
||||
sampler_desc.compareEnable = desc->compare;
|
||||
sampler_desc.compareEnable = !!desc->compare;
|
||||
sampler_desc.compareOp = vk_compare_op_from_wined3d(desc->comparison_func);
|
||||
sampler_desc.minLod = desc->min_lod;
|
||||
sampler_desc.maxLod = desc->max_lod;
|
||||
|
|
Loading…
Reference in New Issue