Lines Matching defs:testCtx
1419 TextureFormatCase (tcu::TestContext& testCtx, TextureFormat format)
1420 : tcu::TestCase (testCtx, getCaseName(format).c_str(), "")
1532 ColorFormatCase (tcu::TestContext& testCtx, TextureFormat format)
1533 : TextureFormatCase(testCtx, format)
1567 DepthFormatCase (tcu::TestContext& testCtx, TextureFormat format)
1568 : TextureFormatCase(testCtx, format)
1605 StencilFormatCase (tcu::TestContext& testCtx, TextureFormat format)
1606 : TextureFormatCase(testCtx, format)
1643 DepthStencilFormatCase (tcu::TestContext& testCtx, TextureFormat format)
1644 : TextureFormatCase(testCtx, format)
1713 tcu::TestCaseGroup* createTextureFormatTests (tcu::TestContext& testCtx)
1715 de::MovePtr<tcu::TestCaseGroup> group (new tcu::TestCaseGroup(testCtx, "texture_format", "Texture format tests"));
1734 group->addChild(new DepthStencilFormatCase(testCtx, format));
1736 group->addChild(new DepthFormatCase(testCtx, format));
1738 group->addChild(new StencilFormatCase(testCtx, format));
1740 group->addChild(new ColorFormatCase(testCtx, format));