Searched defs:nthBit (Results 1 - 2 of 2) sorted by relevance

/external/deqp/modules/gles31/functional/
H A Des31fMultisampleTests.cpp96 * \brief Creates sample mask with all less significant bits than nthBit set
98 static std::vector<deUint32> genAllSetToNthBitSampleMask (int nthBit) argument
101 const int numWords = getEffectiveSampleMaskWordCount(nthBit - 1);
102 const deUint32 topWordBits = (deUint32)(nthBit - (numWords - 1) * wordSize);
H A Des31fTextureMultisampleTests.cpp93 * \brief Creates sample mask with all less significant bits than nthBit set
95 static std::vector<deUint32> genAllSetToNthBitSampleMask (int nthBit) argument
98 const int numWords = getEffectiveSampleMaskWordCount(nthBit - 1);
99 const deUint32 topWordBits = (deUint32)(nthBit - (numWords - 1) * wordSize);
110 * \brief Creates sample mask with nthBit set
112 static std::vector<deUint32> genSetNthBitSampleMask (int nthBit) argument
115 const int numWords = getEffectiveSampleMaskWordCount(nthBit);
116 const deUint32 topWordBits = (deUint32)(nthBit - (numWords - 1) * wordSize);

Completed in 875 milliseconds