Lines Matching refs:dstFormat
330 …ntext, const char* name, const char* desc, deUint32 srcFormat, deUint32 dstFormat, const IVec2& si… in BlitColorConversionCase() argument
333 , m_dstFormat (dstFormat) in BlitColorConversionCase()
348 tcu::TextureFormat dstFormat = glu::mapGLInternalFormat(m_dstFormat); in render() local
350 glu::DataType dstOutputType = getFragmentOutputType(dstFormat); in render()
354 tcu::TextureFormatInfo dstFmtRangeInfo = tcu::getTextureFormatInfo(dstFormat); in render()
355 … copyMask = tcu::logicalAnd(getChannelMask(srcFormat.order), getChannelMask(dstFormat.order)); in render()
422 …readPixels(dst, 0, 0, m_size.x(), m_size.y(), dstFormat, dstRangeInfo.lookupScale, dstRangeInfo.lo… in render()
428 const tcu::TextureFormat dstFormat = glu::mapGLInternalFormat(m_dstFormat); in compare() local
430 const bool dstIsSRGB = tcu::isSRGB(dstFormat); in compare()
436 threshold = getToSRGBConversionThreshold(srcFormat, dstFormat); in compare()
441 const tcu::RGBA dstMaxDiff = getFormatThreshold(dstFormat); in compare()
1023 deUint32 dstFormat = colorFormats[dstFmtNdx]; in init() local
1024 tcu::TextureFormat dstTexFmt = glu::mapGLInternalFormat(dstFormat); in init()
1033 string name = string(getFormatName(srcFormat)) + "_to_" + getFormatName(dstFormat); in init()
1035 …ild(new BlitColorConversionCase(m_context, name.c_str(), "", srcFormat, dstFormat, IVec2(127, 113)… in init()