Commit f969570c authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

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: 's avatarHenri Verbeet <hverbeet@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent cce051b7
......@@ -204,7 +204,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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment