Lines Matching refs:texFormatInfo

305 			const tcu::TextureFormatInfo	texFormatInfo	= tcu::getTextureFormatInfo(stencilAccess.getFormat());
308 tcu::fillWithComponentGradients(tcu::flipYAccess(stencilAccess), texFormatInfo.valueMax, texFormatInfo.valueMin);
325 const tcu::TextureFormatInfo texFormatInfo = tcu::getTextureFormatInfo(texture->getRefTexture().getFormat());
326 const tcu::Vec4 rampLow = texFormatInfo.valueMin;
327 const tcu::Vec4 rampHigh = texFormatInfo.valueMax;
394 const tcu::TextureFormatInfo texFormatInfo = tcu::getTextureFormatInfo(texFormat);
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>());
1424 const tcu::TextureFormatInfo texFormatInfo = tcu::getTextureFormatInfo(texFormat);
1450 iteration.lookupScale = tcu::Vec4(texFormatInfo.lookupScale.x());
1451 iteration.lookupBias = tcu::Vec4(texFormatInfo.lookupBias.x());
1455 iteration.lookupScale = texFormatInfo.lookupScale;
1456 iteration.lookupBias = texFormatInfo.lookupBias;
1727 const tcu::TextureFormatInfo texFormatInfo = tcu::getTextureFormatInfo(texFormat);
1736 iteration.lookupScale = tcu::Vec4(texFormatInfo.lookupScale.x());
1737 iteration.lookupBias = tcu::Vec4(texFormatInfo.lookupBias.x());
1741 iteration.lookupScale = texFormatInfo.lookupScale;
1742 iteration.lookupBias = texFormatInfo.lookupBias;
1941 const tcu::TextureFormatInfo texFormatInfo = tcu::getTextureFormatInfo(texFormat);
1943 const float maxChannelValue = (channelMask[0]) ? (texFormatInfo.valueMax[0])
1944 : (channelMask[1]) ? (texFormatInfo.valueMax[1])
1945 : (channelMask[2]) ? (texFormatInfo.valueMax[2])
1946 : (texFormatInfo.valueMax[3]);
1974 iteration.lookupScale = texFormatInfo.lookupScale;
1975 iteration.lookupBias = texFormatInfo.lookupBias;
2121 const tcu::TextureFormatInfo texFormatInfo = tcu::getTextureFormatInfo(texFormat);
2125 m_lookupScale = texFormatInfo.lookupScale;
2126 m_lookupBias = texFormatInfo.lookupBias;