Home
last modified time | relevance | path

Searched refs:isSint (Results 1 – 3 of 3) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleImageTests.cpp542 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint) in getColorFormatStr() argument
546 str << (isUint ? "uint" : isSint ? "int" : "float"); in getColorFormatStr()
548 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents; in getColorFormatStr()
553 std::string getSamplerTypeStr (const int numLayers, const bool isUint, const bool isSint) in getSamplerTypeStr() argument
556 str << (isUint ? "u" : isSint ? "i" : "") << "sampler2DMS" << (numLayers > 1 ? "Array" : ""); in getSamplerTypeStr()
562 std::string getColorStr (const T* data, int numComponents, const bool isUint, const bool isSint) in getColorStr() argument
567 str << (isUint ? "u" : isSint ? "i" : "") << "vec4("; in getColorStr()
586 …learColorStr (const VkFormat format, const int numComponents, const bool isUint, const bool isSint) in getReferenceClearColorStr() argument
590 return getColorStr(clearColor.uint32, numComponents, isUint, isSint); in getReferenceClearColorStr()
591 else if (isSint) in getReferenceClearColorStr()
[all …]
DvktPipelineRenderToImageTests.cpp575 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint) in getColorFormatStr() argument
579 str << (isUint ? "uint" : isSint ? "int" : "float"); in getColorFormatStr()
581 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents; in getColorFormatStr()
831 const bool isSint = isIntFormat(caseDef.colorFormat); in initPrograms() local
859 const std::string colorFormat = getColorFormatStr(numComponents, isUint, isSint); in initPrograms()
860 …const std::string colorInteger = (isUint || isSint ? " * "+colorFormat+"("+colorValue.str()+")" :"… in initPrograms()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageMutableTests.cpp303 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint) in getColorFormatStr() argument
307 str << (isUint ? "uint" : isSint ? "int" : "float"); in getColorFormatStr()
309 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents; in getColorFormatStr()
369 const bool isSint = isIntFormat(caseDef.viewFormat); in initPrograms() local
370 const std::string colorFormat = getColorFormatStr(numComponents, isUint, isSint); in initPrograms()