render/vulkan: Initialize to fix compilation error

This commit is contained in:
Alexander Orzechowski 2023-06-19 18:00:26 -04:00
parent be73da28b2
commit 06c0b0a204
1 changed files with 1 additions and 1 deletions

View File

@ -2388,7 +2388,7 @@ struct wlr_vk_pipeline_layout *get_or_create_pipeline_layout(
pipeline_layout->key = *key;
VkResult res;
VkFilter filter;
VkFilter filter = VK_FILTER_LINEAR;
switch (key->filter_mode) {
case WLR_SCALE_FILTER_BILINEAR:
filter = VK_FILTER_LINEAR;