Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesTestsUtil.cpp484 …std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getShaderImageType() local
503 return formatPart + "image" + imageTypePart; in getShaderImageType()
508 std::string formatPart; in getShaderImageType() local
515 formatPart = "i"; in getShaderImageType()
518 formatPart = "u"; in getShaderImageType()
530 formatPart += "64"; in getShaderImageType()
547 return formatPart + "image" + imageTypePart; in getShaderImageType()
/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.cpp802 …const std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLAS… in getShaderMultisampledImageType() local
806 str << formatPart << "image2DMS" << (numLayers > 1 ? "Array" : ""); in getShaderMultisampledImageType()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp591 std::string formatPart = getFormatPrefix(format); in getShaderImageType() local
623 return formatPart + "image" + imageTypePart; in getShaderImageType()
696 …const char* formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLASS_UNSI… in getGlslSamplerType() local
714 return std::string(formatPart) + typePart; in getGlslSamplerType()
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrStorageImageWriteTests.cpp457 std::string formatPart; in getShaderImageType() local
463 formatPart = "i"; in getShaderImageType()
466 formatPart = "u"; in getShaderImageType()
477 return formatPart + "image2D"; in getShaderImageType()
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
DvktProtectedMemShaderImageAccessTests.cpp217 …const std::string formatPart = tcu::getTextureChannelClass(format.type) == tcu::TEXTURECHANNELCLAS… in getShaderSamplerOrImageType() local
220 return formatPart + (isSampler ? "sampler2D" : "image2D"); in getShaderSamplerOrImageType()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationOperation.cpp415 …const std::string formatPart = tcu::getTextureChannelClass(texFormat.type) == tcu::TEXTURECHANNE… in getShaderImageType() local
419 case VK_IMAGE_TYPE_1D: return formatPart + "image1D"; in getShaderImageType()
420 case VK_IMAGE_TYPE_2D: return formatPart + "image2D"; in getShaderImageType()
421 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()