HomeSort by relevance Sort by last modified time
    Searched refs:isSint (Results 1 - 3 of 3) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleImageTests.cpp 548 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint)
552 str << (isUint ? "uint" : isSint ? "int" : "float");
554 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents;
559 std::string getSamplerTypeStr (const int numLayers, const bool isUint, const bool isSint)
562 str << (isUint ? "u" : isSint ? "i" : "") << "sampler2DMS" << (numLayers > 1 ? "Array" : "");
568 std::string getColorStr (const T* data, int numComponents, const bool isUint, const bool isSint)
573 str << (isUint ? "u" : isSint ? "i" : "") << "vec4(";
592 std::string getReferenceClearColorStr (const VkFormat format, const int numComponents, const bool isUint, const bool isSint)
596 return getColorStr(clearColor.uint32, numComponents, isUint, isSint);
597 else if (isSint)
    [all...]
vktPipelineRenderToImageTests.cpp 582 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint)
586 str << (isUint ? "uint" : isSint ? "int" : "float");
588 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents;
838 const bool isSint = isIntFormat(caseDef.colorFormat);
866 const std::string colorFormat = getColorFormatStr(numComponents, isUint, isSint);
867 const std::string colorInteger = (isUint || isSint ? " * "+colorFormat+"("+colorValue.str()+")" :"");
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageMutableTests.cpp 213 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint)
217 str << (isUint ? "uint" : isSint ? "int" : "float");
219 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents;
279 const bool isSint = isIntFormat(caseDef.viewFormat);
280 const std::string colorFormat = getColorFormatStr(numComponents, isUint, isSint);
    [all...]

Completed in 57 milliseconds