Fix maxAnisotropy validation error

This commit is contained in:
Phillip Stephens 2017-05-09 17:00:30 -07:00
parent 7823aecc57
commit a5b38596a5
1 changed files with 1 additions and 0 deletions

View File

@ -595,6 +595,7 @@ void VulkanContext::initSwapChain(VulkanContext::Window& windowCtx, VkSurfaceKHR
samplerInfo.addressModeU = VK_SAMPLER_ADDRESS_MODE_REPEAT;
samplerInfo.addressModeV = VK_SAMPLER_ADDRESS_MODE_REPEAT;
samplerInfo.addressModeW = VK_SAMPLER_ADDRESS_MODE_REPEAT;
samplerInfo.maxAnisotropy = 1.f;
ThrowIfFailed(vk::CreateSampler(m_dev, &samplerInfo, nullptr, &m_linearSampler));
/* images */