mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
vulkan/colorconvert: zero out sampler create struct
This commit is contained in:
parent
d6471b0251
commit
a3454edeb2
1 changed files with 2 additions and 0 deletions
|
@ -1388,6 +1388,8 @@ _create_sampler (GstVulkanColorConvert * conv)
|
|||
/* *INDENT-OFF* */
|
||||
VkSamplerCreateInfo samplerInfo = {
|
||||
.sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO,
|
||||
.pNext = NULL,
|
||||
.flags = 0,
|
||||
.magFilter = VK_FILTER_LINEAR,
|
||||
.minFilter = VK_FILTER_LINEAR,
|
||||
.addressModeU = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,
|
||||
|
|
Loading…
Reference in a new issue