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

  /external/deqp/framework/common/
tcuRGBA.cpp 59 RGBA computeAbsDiffMasked (RGBA a, RGBA b, deUint32 cmpMask)
68 if (cmpMask & RGBA::RED_MASK)
76 if (cmpMask & RGBA::GREEN_MASK)
84 if (cmpMask & RGBA::BLUE_MASK)
92 if (cmpMask & RGBA::ALPHA_MASK)
103 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask)
105 return computeAbsDiffMasked(a, b, cmpMask).isBelowThreshold(threshold);
tcuRGBA.hpp 107 inline bool compareEqualMasked (RGBA a, RGBA b, deUint32 cmpMask)
109 RGBA mask((cmpMask&RGBA::RED_MASK)?0xFF:0, (cmpMask&RGBA::GREEN_MASK)?0xFF:0, (cmpMask&RGBA::BLUE_MASK)?0xFF:0, (cmpMask&RGBA::ALPHA_MASK)?0xFF:0);
151 RGBA computeAbsDiffMasked (RGBA a, RGBA b, deUint32 cmpMask);
152 bool compareThresholdMasked (RGBA a, RGBA b, RGBA threshold, deUint32 cmpMask);
  /external/chromium_org/third_party/skia/src/utils/
SkTextureCompressor_LATC.cpp 440 uint64_t cmpMask = 0;
443 cmpMask |= static_cast<uint64_t>(pack_index(idx)) << 12*i;
445 cmpMask = SkEndian_SwapLE64(cmpMask << 16); // avoid header
452 cmpSrc = cmpSrc & cmpMask;
464 *cmpDst &= ~cmpMask;
  /external/deqp/modules/gles31/functional/
es31fShaderIntegerFunctionTests.cpp 833 const deUint32 cmpMask = getLowBitMask(integerLength);
846 if ((out&cmpMask) != (ref&cmpMask))
893 const deUint32 cmpMask = reverseBits(getLowBitMask(integerLength));
901 if ((out&cmpMask) != (ref&cmpMask))
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 808 const tcu::BVec4 cmpMask (numValidChannels >= 1, numValidChannels >= 2, numValidChannels >= 3, numValidChannels >= 4);
847 finalThreshold = select(max(formatThreshold, UVec4(precThreshold)), UVec4(~0u), cmpMask);
859 const Vec4 threshold = select(baseThreshold, Vec4(2.0f), cmpMask);
868 const tcu::UVec4 threshold = select(UVec4(0u), UVec4(~0u), cmpMask);
    [all...]

Completed in 188 milliseconds