From: Jason Ekstrand Date: Tue, 7 Jul 2015 23:49:01 +0000 (-0700) Subject: vk/vulkan.h: Add a compareEnable parameter to SamplerCreateInfo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=518ca9e25417cdc6d3ebfaadfa42100d85eb5fdb;p=mesa.git vk/vulkan.h: Add a compareEnable parameter to SamplerCreateInfo Our hardware doesn't actually need this, so adding it is a no-op. --- diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 1af41e4beba..80edb316cc7 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1558,6 +1558,7 @@ typedef struct { VkTexAddress addressW; float mipLodBias; uint32_t maxAnisotropy; + bool32_t compareEnable; VkCompareOp compareOp; float minLod; float maxLod;