Lines Matching refs:testCtx
50 tcu::TestCaseGroup* createGeometryInteractionTests (tcu::TestContext& testCtx)
52 de::MovePtr<tcu::TestCaseGroup> group (new tcu::TestCaseGroup(testCtx, "geometry_interaction"));
54 group->addChild(createGeometryPassthroughTests (testCtx));
55 group->addChild(createGeometryGridRenderLimitsTests (testCtx));
56 group->addChild(createGeometryGridRenderScatterTests(testCtx));
57 group->addChild(createGeometryPointSizeTests (testCtx));
64 tcu::TestContext& testCtx = tessellationTests->getTestContext();
66 tessellationTests->addChild(createLimitsTests (testCtx));
67 tessellationTests->addChild(createCoordinatesTests (testCtx));
68 tessellationTests->addChild(createWindingTests (testCtx));
69 tessellationTests->addChild(createShaderInputOutputTests (testCtx));
70 tessellationTests->addChild(createMiscDrawTests (testCtx));
71 tessellationTests->addChild(createCommonEdgeTests (testCtx));
72 tessellationTests->addChild(createFractionalSpacingTests (testCtx));
73 tessellationTests->addChild(createPrimitiveDiscardTests (testCtx));
74 tessellationTests->addChild(createInvarianceTests (testCtx));
75 tessellationTests->addChild(createUserDefinedIOTests (testCtx));
76 tessellationTests->addChild(createGeometryInteractionTests (testCtx));
81 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx, const std::string& name)
83 return createTestGroup(testCtx, name.c_str(), createChildren);