Home
last modified time | relevance | path

Searched refs:formatPart (Results 1 – 7 of 7) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp688 …std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getShaderImageType() local
721 return formatPart + "image" + imageTypePart; in getShaderImageType()
772 …const char* formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getGlslSamplerType() local
790 return std::string(formatPart) + typePart; in getGlslSamplerType()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleTestsUtil.cpp246 …std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getShaderImageType() local
265 return formatPart + "image" + imageTypePart; in getShaderImageType()
DvktPipelineMultisampleImageTests.cpp701 …const std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLAS… in getShaderMultisampledImageType() local
705 str << formatPart << "image2DMS" << (numLayers > 1 ? "Array" : ""); in getShaderMultisampledImageType()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesTestsUtil.cpp545 …std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getShaderImageType() local
564 return formatPart + "image" + imageTypePart; in getShaderImageType()
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
DvktProtectedMemShaderImageAccessTests.cpp216 …const std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLAS… in getShaderSamplerOrImageType() local
219 return formatPart + (isSampler ? "sampler2D" : "image2D"); in getShaderSamplerOrImageType()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationOperation.cpp402 …const std::string formatPart = tcu::getTextureChannelClass(texFormat.type) == tcu::TEXTURECHANNE… in getShaderImageType() local
406 case VK_IMAGE_TYPE_1D: return formatPart + "image1D"; in getShaderImageType()
407 case VK_IMAGE_TYPE_2D: return formatPart + "image2D"; in getShaderImageType()
408 case VK_IMAGE_TYPE_3D: return formatPart + "image3D"; in getShaderImageType()
/external/deqp/modules/gles31/functional/
Des31fShaderImageLoadStoreTests.cpp239 const char* const formatPart = isFormatTypeUnsignedInteger(formatType) ? "u" in getShaderSamplerOrImageType() local
250 return string() + formatPart + (isSampler ? "sampler" : "image") + imageTypePart; in getShaderSamplerOrImageType()