Home | History | Annotate | Download | only in glshared

Lines Matching defs:group

5049 		TestCaseGroup*	group = new TestCaseGroup(ctx.testContext,
5052 group->addChild(createFuncCase(ctx, "scalar", m_funcs.func));
5053 group->addChild(createFuncCase(ctx, "vec2", m_funcs.func2));
5054 group->addChild(createFuncCase(ctx, "vec3", m_funcs.func3));
5055 group->addChild(createFuncCase(ctx, "vec4", m_funcs.func4));
5057 return MovePtr<TestNode>(group);
5081 TestCaseGroup* group = new TestCaseGroup(ctx.testContext,
5083 group->addChild(createFuncCase(ctx, "scalar", instance<GenF<1> >()));
5084 group->addChild(createFuncCase(ctx, "vec2", instance<GenF<2> >()));
5085 group->addChild(createFuncCase(ctx, "vec3", instance<GenF<3> >()));
5086 group->addChild(createFuncCase(ctx, "vec4", instance<GenF<4> >()));
5088 return MovePtr<TestNode>(group);
5100 TestCaseGroup* group = new TestCaseGroup(ctx.testContext,
5102 group->addChild(createFuncCase(ctx, "mat2", instance<GenF<2> >()));
5105 group->addChild(createFuncCase(ctx, "mat3", instance<GenF<3> >()));
5106 group->addChild(createFuncCase(ctx, "mat4", instance<GenF<4> >()));
5109 return MovePtr<TestNode>(group);
5121 TestCaseGroup* const group = new TestCaseGroup(ctx.testContext,
5124 this->addCase<2, 2>(ctx, group);
5125 this->addCase<3, 2>(ctx, group);
5126 this->addCase<4, 2>(ctx, group);
5127 this->addCase<2, 3>(ctx, group);
5128 this->addCase<3, 3>(ctx, group);
5129 this->addCase<4, 3>(ctx, group);
5130 this->addCase<2, 4>(ctx, group);
5131 this->addCase<3, 4>(ctx, group);
5132 this->addCase<4, 4>(ctx, group);
5134 return MovePtr<TestNode>(group);
5141 void addCase (const Context& ctx, TestCaseGroup* group) const
5145 group->addChild(createFuncCase(ctx, name, instance<GenF<Rows, Cols> >()));
5322 TestCaseGroup* const group = new TestCaseGroup(ctx.testCtx,
5342 group->addChild(factory.createCase(caseCtx).release());
5346 return group;