Lines Matching refs:samplerCreateInfo
4081 tcu::Sampler mapVkSampler (const VkSamplerCreateInfo& samplerCreateInfo)
4089 void const *pNext = samplerCreateInfo.pNext;
4119 tcu::Sampler sampler(mapVkSamplerAddressMode(samplerCreateInfo.addressModeU),
4120 mapVkSamplerAddressMode(samplerCreateInfo.addressModeV),
4121 mapVkSamplerAddressMode(samplerCreateInfo.addressModeW),
4122 mapVkMinTexFilter(samplerCreateInfo.minFilter, samplerCreateInfo.mipmapMode),
4123 mapVkMagTexFilter(samplerCreateInfo.magFilter),
4125 !samplerCreateInfo.unnormalizedCoordinates,
4126 samplerCreateInfo.compareEnable ? mapVkSamplerCompareOp(samplerCreateInfo.compareOp)
4131 !(samplerCreateInfo.flags & VK_SAMPLER_CREATE_NON_SEAMLESS_CUBE_MAP_BIT_EXT),
4138 if (samplerCreateInfo.anisotropyEnable)
4141 switch (samplerCreateInfo.borderColor)