mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 13:01:47 +00:00
- removed duplicated expressions
This commit is contained in:
parent
a0b0467e91
commit
90c4e62e67
1 changed files with 0 additions and 2 deletions
|
@ -77,7 +77,6 @@ VulkanDevice::VulkanDevice()
|
|||
CreateSurface();
|
||||
|
||||
UsedDeviceFeatures.samplerAnisotropy = VK_TRUE;
|
||||
UsedDeviceFeatures.shaderClipDistance = VK_TRUE;
|
||||
UsedDeviceFeatures.fragmentStoresAndAtomics = VK_TRUE;
|
||||
UsedDeviceFeatures.depthClamp = VK_TRUE;
|
||||
UsedDeviceFeatures.shaderClipDistance = VK_TRUE;
|
||||
|
@ -102,7 +101,6 @@ bool VulkanDevice::CheckFeatures(const VkPhysicalDeviceFeatures &f)
|
|||
{
|
||||
return
|
||||
f.samplerAnisotropy == VK_TRUE &&
|
||||
f.shaderClipDistance == VK_TRUE &&
|
||||
f.fragmentStoresAndAtomics == VK_TRUE &&
|
||||
f.depthClamp == VK_TRUE &&
|
||||
f.shaderClipDistance == VK_TRUE;
|
||||
|
|
Loading…
Reference in a new issue