Searched refs:samplerCreateInfo (Results 1 – 3 of 3) sorted by relevance
860 VkSamplerCreateInfo samplerCreateInfo; in VkSamplerObj() local861 memset(&samplerCreateInfo, 0, sizeof(samplerCreateInfo)); in VkSamplerObj()862 samplerCreateInfo.sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO; in VkSamplerObj()863 samplerCreateInfo.magFilter = VK_FILTER_NEAREST; in VkSamplerObj()864 samplerCreateInfo.minFilter = VK_FILTER_NEAREST; in VkSamplerObj()865 samplerCreateInfo.mipmapMode = VK_SAMPLER_MIPMAP_MODE_NEAREST; in VkSamplerObj()866 samplerCreateInfo.addressModeU = VK_SAMPLER_ADDRESS_MODE_REPEAT; in VkSamplerObj()867 samplerCreateInfo.addressModeV = VK_SAMPLER_ADDRESS_MODE_REPEAT; in VkSamplerObj()868 samplerCreateInfo.addressModeW = VK_SAMPLER_ADDRESS_MODE_REPEAT; in VkSamplerObj()869 samplerCreateInfo.mipLodBias = 0.0; in VkSamplerObj()[all …]
788 tcu::Sampler mapVkSampler (const VkSamplerCreateInfo& samplerCreateInfo) in mapVkSampler() argument793 tcu::Sampler sampler(mapVkSamplerAddressMode(samplerCreateInfo.addressModeU), in mapVkSampler()794 mapVkSamplerAddressMode(samplerCreateInfo.addressModeV), in mapVkSampler()795 mapVkSamplerAddressMode(samplerCreateInfo.addressModeW), in mapVkSampler()796 mapVkMinTexFilter(samplerCreateInfo.minFilter, samplerCreateInfo.mipmapMode), in mapVkSampler()797 mapVkMagTexFilter(samplerCreateInfo.magFilter), in mapVkSampler()799 !samplerCreateInfo.unnormalizedCoordinates, in mapVkSampler()800 samplerCreateInfo.compareEnable ? mapVkSamplerCompareOp(samplerCreateInfo.compareOp) in mapVkSampler()806 if (samplerCreateInfo.anisotropyEnable) in mapVkSampler()809 switch (samplerCreateInfo.borderColor) in mapVkSampler()
48 tcu::Sampler mapVkSampler (const VkSamplerCreateInfo& samplerCreateInfo);