Lines Matching refs:bitDepth
806 const auto bitDepth = tcu::getTextureFormatBitDepth(texFormat);
809 const tcu::IVec4 signedMinValues (bitDepth[0] ? deIntMinValue32(deMin32(bitDepth[0], 32)) : (-1),
810 bitDepth[1] ? deIntMinValue32(deMin32(bitDepth[1], 32)) : (-1),
811 bitDepth[2] ? deIntMinValue32(deMin32(bitDepth[2], 32)) : (-1),
812 bitDepth[3] ? deIntMinValue32(deMin32(bitDepth[3], 32)) : (-1));
814 const tcu::IVec4 signedMaxValues (bitDepth[0] ? deIntMaxValue32(deMin32(bitDepth[0], 32)) : 1,
815 bitDepth[1] ? deIntMaxValue32(deMin32(bitDepth[1], 32)) : 1,
816 bitDepth[2] ? deIntMaxValue32(deMin32(bitDepth[2], 32)) : 1,
817 bitDepth[3] ? deIntMaxValue32(deMin32(bitDepth[3], 32)) : 1);
821 const tcu::UVec4 unsignedMaxValues (bitDepth[0] ? deUintMaxValue32(deMin32(bitDepth[0], 32)) : 1u,
822 bitDepth[1] ? deUintMaxValue32(deMin32(bitDepth[1], 32)) : 1u,
823 bitDepth[2] ? deUintMaxValue32(deMin32(bitDepth[2], 32)) : 1u,
824 bitDepth[3] ? deUintMaxValue32(deMin32(bitDepth[3], 32)) : 1u);