Home | History | Annotate | Download | only in egl

Lines Matching full:spec

66 	struct Spec
80 MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description);
88 Spec m_spec;
118 string MakeCurrentPerfCase::Spec::toName (void) const
145 string MakeCurrentPerfCase::Spec::toDescription (void) const
151 MakeCurrentPerfCase::MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description)
153 , m_spec (spec)
540 MakeCurrentPerfCase::Spec spec;
542 spec.surfaceTypes = types[typeNdx];
543 spec.contextCount = 1;
544 spec.surfaceCount = 1;
545 spec.release = (releaseNdx == 1);
546 spec.iterationCount = iterationCount;
547 spec.sampleCount = sampleCount;
549 simple->addChild(new MakeCurrentPerfCase(m_eglTestCtx, spec, spec.toName().c_str(), spec.toDescription().c_str()));
576 MakeCurrentPerfCase::Spec spec;
578 spec.surfaceTypes = types[typeNdx];
579 spec.contextCount = contextCounts[contextCountNdx];
580 spec
581 spec.release = (releaseNdx == 1);
582 spec.iterationCount = iterationCount;
583 spec.sampleCount = sampleCount;
585 multiContext->addChild(new MakeCurrentPerfCase(m_eglTestCtx, spec, spec.toName().c_str(), spec.toDescription().c_str()));
619 MakeCurrentPerfCase::Spec spec;
621 spec.surfaceTypes = types[typeNdx];
622 spec.surfaceCount = surfaceCounts[surfaceCountNdx];
623 spec.contextCount = 1;
624 spec.release = (releaseNdx == 1);
625 spec.iterationCount = iterationCount;
626 spec.sampleCount = sampleCount;
628 multiSurface->addChild(new MakeCurrentPerfCase(m_eglTestCtx, spec, spec.toName().c_str(), spec.toDescription().c_str()));
669 MakeCurrentPerfCase::Spec spec;
671 spec.surfaceTypes = types[typeNdx];
672 spec.contextCount = contextCounts[contextCountNdx];
673 spec.surfaceCount = surfaceCounts[surfaceCountNdx];
674 spec.release = (releaseNdx == 1);
675 spec.iterationCount = iterationCount;
676 spec.sampleCount = sampleCount;
678 multi->addChild(new MakeCurrentPerfCase(m_eglTestCtx, spec, spec.toName().c_str(), spec.toDescription().c_str()));