Lines Matching refs:samplerParams
324 const VkSamplerCreateInfo samplerParams = getSamplerCreateInfo();
352 samplerParams, samplerLod, vertices, separateStencilUsage);
638 VkSamplerCreateInfo samplerParams = SamplerTest::getSamplerCreateInfo();
639 samplerParams.magFilter = m_magFilter;
641 return samplerParams;
661 VkSamplerCreateInfo samplerParams = SamplerTest::getSamplerCreateInfo();
662 samplerParams.minFilter = m_minFilter;
664 samplerParams.minLod = 0.01f;
666 return samplerParams;
705 VkSamplerCreateInfo samplerParams = SamplerMagFilterTest::getSamplerCreateInfo();
707 samplerParams.pNext = &m_reductionCreaterInfo;
709 return samplerParams;
735 VkSamplerCreateInfo samplerParams = SamplerMinFilterTest::getSamplerCreateInfo();
737 samplerParams.pNext = &m_reductionCreaterInfo;
739 return samplerParams;
770 VkSamplerCreateInfo samplerParams = SamplerTest::getSamplerCreateInfo();
772 samplerParams.mipmapMode = m_mipmapMode;
773 samplerParams.minLod = m_minLod;
774 samplerParams.maxLod = m_maxLod;
775 samplerParams.mipLodBias = m_mipLodBias;
777 return samplerParams;
848 VkSamplerCreateInfo samplerParams = SamplerTest::getSamplerCreateInfo();
849 samplerParams.addressModeU = m_addressU;
850 samplerParams.addressModeV = m_addressV;
851 samplerParams.addressModeW = m_addressW;
852 samplerParams.borderColor = m_borderColor;
857 samplerParams.pNext = &m_customBorderColorCreateInfo;
860 return samplerParams;