Skip to content
Snippets Groups Projects
Commit 76c9cd4c authored by Jakob Bornecrantz's avatar Jakob Bornecrantz
Browse files

comp: Filter distortion texture lineary

parent 1873d3a1
No related branches found
No related tags found
No related merge requests found
...@@ -357,8 +357,8 @@ vk_create_sampler(struct vk_bundle *vk, VkSampler *out_sampler) ...@@ -357,8 +357,8 @@ vk_create_sampler(struct vk_bundle *vk, VkSampler *out_sampler)
.sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO, .sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO,
.pNext = NULL, .pNext = NULL,
.flags = 0, .flags = 0,
.magFilter = VK_FILTER_NEAREST, .magFilter = VK_FILTER_LINEAR,
.minFilter = VK_FILTER_NEAREST, .minFilter = VK_FILTER_LINEAR,
.mipmapMode = VK_SAMPLER_MIPMAP_MODE_LINEAR, .mipmapMode = VK_SAMPLER_MIPMAP_MODE_LINEAR,
.addressModeU = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE, .addressModeU = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,
.addressModeV = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE, .addressModeV = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment