Home | History | Annotate | Download | only in functional

Lines Matching defs:dstFormat

330 	BlitColorConversionCase (Context& context, const char* name, const char* desc, deUint32 srcFormat, deUint32 dstFormat, const IVec2& size)
333 , m_dstFormat (dstFormat)
348 tcu::TextureFormat dstFormat = glu::mapGLInternalFormat(m_dstFormat);
350 glu::DataType dstOutputType = getFragmentOutputType(dstFormat);
354 tcu::TextureFormatInfo dstFmtRangeInfo = tcu::getTextureFormatInfo(dstFormat);
355 tcu::BVec4 copyMask = tcu::logicalAnd(getChannelMask(srcFormat.order), getChannelMask(dstFormat.order));
422 readPixels(dst, 0, 0, m_size.x(), m_size.y(), dstFormat, dstRangeInfo.lookupScale, dstRangeInfo.lookupBias);
428 const tcu::TextureFormat dstFormat = glu::mapGLInternalFormat(m_dstFormat);
430 const bool dstIsSRGB = tcu::isSRGB(dstFormat);
436 threshold = getToSRGBConversionThreshold(srcFormat, dstFormat);
441 const tcu::RGBA dstMaxDiff = getFormatThreshold(dstFormat);
1023 deUint32 dstFormat = colorFormats[dstFmtNdx];
1024 tcu::TextureFormat dstTexFmt = glu::mapGLInternalFormat(dstFormat);
1033 string name = string(getFormatName(srcFormat)) + "_to_" + getFormatName(dstFormat);
1035 conversionGroup->addChild(new BlitColorConversionCase(m_context, name.c_str(), "", srcFormat, dstFormat, IVec2(127, 113)));