Lines Matching defs:spec
85 MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description);
157 MakeCurrentPerfCase::MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description)
159 , m_spec (spec)
568 MakeCurrentPerfCase::Spec spec;
570 spec.surfaceTypes = types[typeNdx];
571 spec.contextCount = 1;
572 spec.surfaceCount = 1;
573 spec.release = (releaseNdx == 1);
574 spec.iterationCount = iterationCount;
575 spec.sampleCount = sampleCount;
577 simple->addChild(new MakeCurrentPerfCase(m_eglTestCtx, spec, spec.toName().c_str(), spec.toDescription().c_str()));
604 MakeCurrentPerfCase::Spec spec;
606 spec.surfaceTypes = types[typeNdx];
607 spec.contextCount = contextCounts[contextCountNdx];
608 spec.surfaceCount = 1;
609 spec.release = (releaseNdx == 1);
610 spec.iterationCount = iterationCount;
611 spec.sampleCount = sampleCount;
613 multiContext->addChild(new MakeCurrentPerfCase(m_eglTestCtx, spec, spec.toName().c_str(), spec.toDescription().c_str()));
647 MakeCurrentPerfCase::Spec spec;
649 spec.surfaceTypes = types[typeNdx];
650 spec.surfaceCount = surfaceCounts[surfaceCountNdx];
651 spec.contextCount = 1;
652 spec.release = (releaseNdx == 1);
653 spec.iterationCount = iterationCount;
654 spec.sampleCount = sampleCount;
656 multiSurface->addChild(new MakeCurrentPerfCase(m_eglTestCtx, spec, spec.toName().c_str(), spec.toDescription().c_str()));
697 MakeCurrentPerfCase::Spec spec;
699 spec.surfaceTypes = types[typeNdx];
700 spec.contextCount = contextCounts[contextCountNdx];
701 spec.surfaceCount = surfaceCounts[surfaceCountNdx];
702 spec.release = (releaseNdx == 1);
703 spec.iterationCount = iterationCount;
704 spec.sampleCount = sampleCount;
706 multi->addChild(new MakeCurrentPerfCase(m_eglTestCtx, spec, spec.toName().c_str(), spec.toDescription().c_str()));