/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | Format.h | 59 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 D | vktPipelineMultisampleImageTests.cpp | 646 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 D | vktPipelineRenderToImageTests.cpp | 490 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 D | vktPipelineExtendedDynamicStateTests.cpp | 1427 , 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 D | vktPipelineMultisampleImageTests.cpp | 642 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 D | vktPipelineRenderToImageTests.cpp | 487 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 D | vktPipelineExtendedDynamicStateTests.cpp | 1066 , 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 D | es3fFragmentOutputTests.cpp | 630 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 D | es3fTransformFeedbackTests.cpp | 539 const bool isUint = glu::isDataTypeUintOrUVec(attrib.type.getBasicType()); in genAttributeData() local 572 else if (isUint) in genAttributeData()
|
H A D | es3fShaderOperatorTests.cpp | 858 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 D | vktImageMutableTests.cpp | 306 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 D | vktImageLoadStoreTests.cpp | 3139 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 D | vktImageMutableTests.cpp | 306 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 D | vktImageLoadStoreTests.cpp | 3079 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 D | UtilsVk.cpp | 80 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 D | FramebufferVk.cpp | 2282 if (format.isUint()) in getCorrectedColorClearValue()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderOperatorTests.cpp | 725 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 D | vktShaderRenderOperatorTests.cpp | 728 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()
|