Lines Matching refs:TextureFormat
49 using tcu::TextureFormat;
1220 DE_STATIC_ASSERT(DE_LENGTH_OF_ARRAY(s_formatData) == TextureFormat::CHANNELTYPE_LAST);
1222 TextureFormat getBaseFormat (TextureFormat format) in getBaseFormat()
1224 …const TextureFormat::ChannelOrder baseOrders[] = { TextureFormat::RGBA, TextureFormat::RGB, Textur… in getBaseFormat()
1228 const TextureFormat curBaseFmt (baseOrders[baseOrderNdx], format.type); in getBaseFormat()
1236 ConstPixelBufferAccess getInputAccess (TextureFormat format) in getInputAccess()
1238 const TextureFormat inputFormat = getBaseFormat(format); in getInputAccess()
1249 const deUint32* getRawReference (TextureFormat format);
1252 const deUint32* getRawReference<float> (TextureFormat format) in getRawReference()
1258 const deUint32* getRawReference<deInt32> (TextureFormat format) in getRawReference()
1264 const deUint32* getRawReference<deUint32> (TextureFormat format) in getRawReference()
1270 void getReferenceValues (TextureFormat storageFormat, TextureFormat viewFormat, vector<Vector<T, 4>… in getReferenceValues()
1407 static std::string getCaseName (TextureFormat format) in getCaseName()
1419 TextureFormatCase (tcu::TestContext& testCtx, TextureFormat format) in TextureFormatCase()
1460 const bool isFloat32Or64 = src.getFormat().type == tcu::TextureFormat::FLOAT || in verifyRead()
1461 src.getFormat().type == tcu::TextureFormat::FLOAT64; in verifyRead()
1526 const TextureFormat m_format;
1532 ColorFormatCase (tcu::TestContext& testCtx, TextureFormat format) in ColorFormatCase()
1535 DE_ASSERT(format.order != TextureFormat::D && in ColorFormatCase()
1536 format.order != TextureFormat::S && in ColorFormatCase()
1537 format.order != TextureFormat::DS); in ColorFormatCase()
1553 if (m_format.type != TextureFormat::UNORM_INT32 && m_format.type != TextureFormat::SNORM_INT32) in iterate()
1567 DepthFormatCase (tcu::TestContext& testCtx, TextureFormat format) in DepthFormatCase()
1570 DE_ASSERT(format.order == TextureFormat::D); in DepthFormatCase()
1605 StencilFormatCase (tcu::TestContext& testCtx, TextureFormat format) in StencilFormatCase()
1608 DE_ASSERT(format.order == TextureFormat::S); in StencilFormatCase()
1643 DepthStencilFormatCase (tcu::TestContext& testCtx, TextureFormat format) in DepthStencilFormatCase()
1646 DE_ASSERT(format.order == TextureFormat::DS); in DepthStencilFormatCase()
1717 for (int channelType = 0; channelType < TextureFormat::CHANNELTYPE_LAST; channelType++) in createTextureFormatTests()
1720 if (TextureFormat::SIGNED_INT64 == channelType || channelType == TextureFormat::UNSIGNED_INT64) in createTextureFormatTests()
1723 for (int channelOrder = 0; channelOrder < TextureFormat::CHANNELORDER_LAST; channelOrder++) in createTextureFormatTests()
1725 …const TextureFormat format ((TextureFormat::ChannelOrder)channelOrder, (TextureFormat::ChannelTy… in createTextureFormatTests()
1733 if (format.order == TextureFormat::DS) in createTextureFormatTests()
1735 else if (format.order == TextureFormat::D) in createTextureFormatTests()
1737 else if (format.order == TextureFormat::S) in createTextureFormatTests()