Lines Matching refs:componentMapping

61 																 const VkComponentMapping&		componentMapping,
68 const VkComponentMapping& componentMapping,
81 VkComponentMapping componentMapping);
96 const VkComponentMapping& componentMapping, in ImageViewTest() argument
103 , m_componentMapping (componentMapping) in ImageViewTest()
111 const VkComponentMapping& componentMapping, in getImageSamplingInstanceParams() argument
141 …arams(renderSize, imageViewType, imageFormat, imageSize, arraySize, componentMapping, subresourceR… in getImageSamplingInstanceParams()
149 tcu::Vec4 ImageViewTest::swizzle (tcu::Vec4 inputData, VkComponentMapping componentMapping) in swizzle() argument
164 return tcu::Vec4(channelValues[componentMapping.r], in swizzle()
165 channelValues[componentMapping.g], in swizzle()
166 channelValues[componentMapping.b], in swizzle()
167 channelValues[componentMapping.a]); in swizzle()
365 …const VkComponentMapping componentMapping = { VK_COMPONENT_SWIZZLE_R, VK_COMPONENT_SWIZZLE_G, VK_… in createSubresourceRangeTests() local
377 imageFormat, config.samplerLod, componentMapping, \ in createSubresourceRangeTests()
572 …or<VkComponentMapping> getComponentMappingPermutations (const VkComponentMapping& componentMapping) in getComponentMappingPermutations() argument
576 …mponentSwizzle channelSwizzles[4] = { componentMapping.r, componentMapping.g, componentMapping.b, in getComponentMappingPermutations()
609 static std::string getComponentMappingCaseName (const VkComponentMapping& componentMapping) in getComponentMappingCaseName() argument
613 name << getComponentSwizzleCaseName(componentMapping.r) << "_" in getComponentMappingCaseName()
614 << getComponentSwizzleCaseName(componentMapping.g) << "_" in getComponentMappingCaseName()
615 << getComponentSwizzleCaseName(componentMapping.b) << "_" in getComponentMappingCaseName()
616 << getComponentSwizzleCaseName(componentMapping.a); in getComponentMappingCaseName()