Searched refs:cmpMask (Results 1 – 6 of 6) sorted by relevance
/external/deqp/framework/common/ |
D | tcuRGBA.cpp | 53 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()
|
D | tcuRGBA.hpp | 107 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);
|
/external/skia/src/utils/ |
D | SkTextureCompressor_LATC.cpp | 441 uint64_t cmpMask = 0; in UpdateBlock() local 444 cmpMask |= static_cast<uint64_t>(pack_index(idx)) << 12*i; in UpdateBlock() 446 cmpMask = SkEndian_SwapLE64(cmpMask << 16); // avoid header in UpdateBlock() 453 cmpSrc = cmpSrc & cmpMask; in UpdateBlock() 465 *cmpDst &= ~cmpMask; in UpdateBlock()
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderIntegerFunctionTests.cpp | 833 const deUint32 cmpMask = getLowBitMask(integerLength); in compare() local 846 if ((out&cmpMask) != (ref&cmpMask)) in compare() 893 const deUint32 cmpMask = reverseBits(getLowBitMask(integerLength)); in compare() local 901 if ((out&cmpMask) != (ref&cmpMask)) in compare()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderIntegerFunctionTests.cpp | 1010 const deUint32 cmpMask = getLowBitMask(integerLength); in compare() local 1023 if ((out&cmpMask) != (ref&cmpMask)) in compare() 1079 const deUint32 cmpMask = reverseBits(getLowBitMask(integerLength)); in compare() local 1087 if ((out&cmpMask) != (ref&cmpMask)) in compare()
|
/external/deqp/modules/gles3/functional/ |
D | es3fFragmentOutputTests.cpp | 879 …const tcu::BVec4 cmpMask (numValidChannels >= 1, numValidChannels >= 2, numValidChannels >= … in iterate() local 921 …lect(max(formatThreshold, UVec4(deMax32(interpThreshold, outTypeThreshold))), UVec4(~0u), cmpMask); in iterate() 933 const Vec4 threshold = select(baseThreshold, Vec4(2.0f), cmpMask); in iterate() 942 const tcu::UVec4 threshold = select(UVec4(0u), UVec4(~0u), cmpMask); in iterate()
|