Home
last modified time | relevance | path

Searched refs:cmpMask (Results 1 – 5 of 5) sorted by relevance

/third_party/vk-gl-cts/framework/common/
DtcuRGBA.cpp53 RGBA computeAbsDiffMasked (RGBA a, RGBA b, deUint32 cmpMask) in computeAbsDiffMasked() argument
62 if (cmpMask & RGBA::RED_MASK) in computeAbsDiffMasked()
70 if (cmpMask & RGBA::GREEN_MASK) in computeAbsDiffMasked()
78 if (cmpMask & RGBA::BLUE_MASK) in computeAbsDiffMasked()
86 if (cmpMask & RGBA::ALPHA_MASK) in computeAbsDiffMasked()
97 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask) in compareThresholdMasked() argument
99 return computeAbsDiffMasked(a, b, cmpMask).isBelowThreshold(threshold); in compareThresholdMasked()
DtcuRGBA.hpp107 inline bool compareEqualMasked (RGBA a, RGBA b, deUint32 cmpMask) in compareEqualMasked() argument
109 …RGBA mask((cmpMask&RGBA::RED_MASK)?0xFF:0, (cmpMask&RGBA::GREEN_MASK)?0xFF:0, (cmpMask&RGBA::BLUE… in compareEqualMasked()
151 RGBA computeAbsDiffMasked (RGBA a, RGBA b, deUint32 cmpMask);
152 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask);
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fShaderIntegerFunctionTests.cpp815 const deUint32 cmpMask = getLowBitMask(integerLength); in compare() local
828 if ((out&cmpMask) != (ref&cmpMask)) in compare()
875 const deUint32 cmpMask = reverseBits(getLowBitMask(integerLength)); in compare() local
883 if ((out&cmpMask) != (ref&cmpMask)) in compare()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderIntegerFunctionTests.cpp944 const deUint32 cmpMask = getLowBitMask(integerLength); in compare() local
957 if ((out&cmpMask) != (ref&cmpMask)) in compare()
1012 const deUint32 cmpMask = reverseBits(getLowBitMask(integerLength)); in compare() local
1020 if ((out&cmpMask) != (ref&cmpMask)) in compare()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fFragmentOutputTests.cpp880 …const tcu::BVec4 cmpMask (numValidChannels >= 1, numValidChannels >= 2, numValidChannels >= … in iterate() local
922 …lect(max(formatThreshold, UVec4(deMax32(interpThreshold, outTypeThreshold))), UVec4(~0u), cmpMask); in iterate()
934 const Vec4 threshold = select(baseThreshold, Vec4(2.0f), cmpMask); in iterate()
943 const tcu::UVec4 threshold = select(UVec4(0u), UVec4(~0u), cmpMask); in iterate()