Home
last modified time | relevance | path

Searched refs:isUint (Results 1 - 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A DFormat.h59 constexpr bool isUint() const;
65 constexpr bool isInt() const { return isSint() || isUint(); } in isInt()
208 constexpr bool Format::isUint() const in isUint() function in angle::Format
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleImageTests.cpp646 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint) in getColorFormatStr() argument
650 str << (isUint ? "uint" : isSint ? "int" : "float"); in getColorFormatStr()
652 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents; in getColorFormatStr()
657 std::string getSamplerTypeStr (const int numLayers, const bool isUint, const bool isSint) in getSamplerTypeStr() argument
660 str << (isUint ? "u" : isSint ? "i" : "") << "sampler2DMS" << (numLayers > 1 ? "Array" : ""); in getSamplerTypeStr()
666 std::string getColorStr (const T* data, int numComponents, const bool isUint, const bool isSint) in getColorStr() argument
671 str << (isUint ? "u" : isSint ? "i" : "") << "vec4("; in getColorStr()
690 std::string getReferenceClearColorStr (const VkFormat format, const int numComponents, const bool isUint, const bool isSint)
693 if (isUint)
694 return getColorStr(clearColor.uint32, numComponents, isUint, isSin
[all...]
H A DvktPipelineRenderToImageTests.cpp490 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint) in getColorFormatStr() argument
494 str << (isUint ? "uint" : isSint ? "int" : "float"); in getColorFormatStr()
496 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents; in getColorFormatStr()
737 const bool isUint = isUintFormat(caseDef.colorFormat); in initPrograms() local
766 const std::string colorFormat = getColorFormatStr(numComponents, isUint, isSint); in initPrograms()
767 const std::string colorInteger = (isUint || isSint ? " * "+colorFormat+"("+colorValue.str()+")" :""); in initPrograms()
H A DvktPipelineExtendedDynamicStateTests.cpp1427 , isUint (false) in SingleColorGenerator()
1433 , isUint (true) in SingleColorGenerator()
1444 if (isUint)
1459 const bool isUint; member in vkt::pipeline::__anon28194::SingleColorGenerator
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineMultisampleImageTests.cpp642 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint) in getColorFormatStr() argument
646 str << (isUint ? "uint" : isSint ? "int" : "float"); in getColorFormatStr()
648 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents; in getColorFormatStr()
653 std::string getSamplerTypeStr (const int numLayers, const bool isUint, const bool isSint) in getSamplerTypeStr() argument
656 str << (isUint ? "u" : isSint ? "i" : "") << "sampler2DMS" << (numLayers > 1 ? "Array" : ""); in getSamplerTypeStr()
662 std::string getColorStr (const T* data, int numComponents, const bool isUint, const bool isSint) in getColorStr() argument
667 str << (isUint ? "u" : isSint ? "i" : "") << "vec4("; in getColorStr()
686 std::string getReferenceClearColorStr (const VkFormat format, const int numComponents, const bool isUint, const bool isSint)
689 if (isUint)
690 return getColorStr(clearColor.uint32, numComponents, isUint, isSin
[all...]
H A DvktPipelineRenderToImageTests.cpp487 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint) in getColorFormatStr() argument
491 str << (isUint ? "uint" : isSint ? "int" : "float"); in getColorFormatStr()
493 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents; in getColorFormatStr()
731 const bool isUint = isUintFormat(caseDef.colorFormat); in initPrograms() local
760 const std::string colorFormat = getColorFormatStr(numComponents, isUint, isSint); in initPrograms()
761 const std::string colorInteger = (isUint || isSint ? " * "+colorFormat+"("+colorValue.str()+")" :""); in initPrograms()
H A DvktPipelineExtendedDynamicStateTests.cpp1066 , isUint (false) in SingleColorGenerator()
1072 , isUint (true) in SingleColorGenerator()
1083 if (isUint)
1098 const bool isUint; member in vkt::pipeline::__anon29419::SingleColorGenerator
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fFragmentOutputTests.cpp630 bool isUint = glu::isDataTypeUintOrUVec(output.type); in iterate() local
720 else if (isUint) in iterate()
782 bool isUint = glu::isDataTypeUintOrUVec(output.type); in iterate() local
786 isUint ? GL_UNSIGNED_INT : GL_NONE; in iterate()
845 const bool isUint = glu::isDataTypeUintOrUVec(output.type); in iterate() local
861 if (isInt || isUint) in iterate()
1075 bool isUint = glu::isDataTypeUintOrUVec(outType); in createRandomCase()
1082 else if (isUint) in createRandomCase()
H A Des3fTransformFeedbackTests.cpp539 const bool isUint = glu::isDataTypeUintOrUVec(attrib.type.getBasicType()); in genAttributeData() local
572 else if (isUint) in genAttributeData()
H A Des3fShaderOperatorTests.cpp858 bool isUint = de::inRange<int>(inType, TYPE_UINT, TYPE_UINT_VEC4); in setupShaderData() local
890 else if (isInt || isUint) in setupShaderData()
900 else if (isInt || isUint) in setupShaderData()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageMutableTests.cpp306 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint) in getColorFormatStr() argument
310 str << (isUint ? "uint" : isSint ? "int" : "float"); in getColorFormatStr()
312 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents; in getColorFormatStr()
371 const bool isUint = isUintFormat(caseDef.viewFormat); in initPrograms() local
373 const std::string colorFormat = getColorFormatStr(numComponents, isUint, isSint); in initPrograms()
H A DvktImageLoadStoreTests.cpp3139 const auto isUint = isUintFormat(format); in createImageExtendOperandsTests() local
3142 DE_ASSERT(isInt || isUint); in createImageExtendOperandsTests()
3156 if (mismatched && isUint) in createImageExtendOperandsTests()
3166 const auto signedOther = ((isInt && !mismatched) || (isUint && mismatched)); in createImageExtendOperandsTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageMutableTests.cpp306 std::string getColorFormatStr (const int numComponents, const bool isUint, const bool isSint) in getColorFormatStr() argument
310 str << (isUint ? "uint" : isSint ? "int" : "float"); in getColorFormatStr()
312 str << (isUint ? "u" : isSint ? "i" : "") << "vec" << numComponents; in getColorFormatStr()
371 const bool isUint = isUintFormat(caseDef.viewFormat); in initPrograms() local
373 const std::string colorFormat = getColorFormatStr(numComponents, isUint, isSint); in initPrograms()
H A DvktImageLoadStoreTests.cpp3079 const auto isUint = isUintFormat(format); in createImageExtendOperandsTests() local
3082 DE_ASSERT(isInt || isUint); in createImageExtendOperandsTests()
3096 if (mismatched && isUint) in createImageExtendOperandsTests()
3106 const auto signedOther = ((isInt && !mismatched) || (isUint && mismatched)); in createImageExtendOperandsTests()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DUtilsVk.cpp80 bool srcIsUint = params.srcFormat->isUint(); in GetConvertVertexFlags()
88 bool dstIsUint = params.dstFormat->isUint(); in GetConvertVertexFlags()
182 else if (format.isUint()) in GetImageClearFlags()
208 if (format.isUint()) in GetFormatFlags()
328 else if (format.isUint()) in GetUnresolveFlags()
H A DFramebufferVk.cpp2282 if (format.isUint()) in getCorrectedColorClearValue()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderOperatorTests.cpp725 const bool isUint = de::inRange<int>(inType, TYPE_UINT, TYPE_UINT_VEC4); in setupShaderData() local
740 else if (isInt || isUint) in setupShaderData()
750 else if (isInt || isUint) in setupShaderData()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
H A DvktShaderRenderOperatorTests.cpp728 const bool isUint = de::inRange<int>(inType, TYPE_UINT, TYPE_UINT_VEC4); in setupShaderData() local
743 else if (isInt || isUint) in setupShaderData()
753 else if (isInt || isUint) in setupShaderData()

Completed in 85 milliseconds