Home | History | Annotate | Download | only in functional

Lines Matching refs:valueMax

308 			tcu::fillWithComponentGradients(tcu::flipYAccess(stencilAccess), texFormatInfo.valueMax, texFormatInfo.valueMin);
327 const tcu::Vec4 rampHigh = texFormatInfo.valueMax;
400 case tcu::TEXTURECHANNELCLASS_FLOATING_POINT: return rr::GenericVec4(texFormatInfo.valueMin + normalizedRange * texFormatInfo.valueMax);
401 case tcu::TEXTURECHANNELCLASS_SIGNED_INTEGER: return rr::GenericVec4(tcu::mix(texFormatInfo.valueMin, texFormatInfo.valueMax, normalizedRange).cast<deInt32>());
402 case tcu::TEXTURECHANNELCLASS_UNSIGNED_INTEGER: return rr::GenericVec4(tcu::mix(texFormatInfo.valueMin, texFormatInfo.valueMax, normalizedRange).cast<deUint32>());
1942 const float maxChannelValue = (channelMask[0]) ? (texFormatInfo.valueMax[0])
1943 : (channelMask[1]) ? (texFormatInfo.valueMax[1])
1944 : (channelMask[2]) ? (texFormatInfo.valueMax[2])
1945 : (texFormatInfo.valueMax[3]);