• Home
  • Raw
  • Download

Lines Matching refs:runParams

370 …::ApiType type, vector<TestRunParams>& runs, const ConfigList& configs, const RunParams* runParams,  in getTestRunsForNoContext()  argument
377 if (!glu::contextSupports(glu::ContextType(type), runParams[i].apiType)) in getTestRunsForNoContext()
380 const char* apiName = getApiName(runParams[i].apiType); in getTestRunsForNoContext()
382 const int width = runParams[i].surfaceWidth; in getTestRunsForNoContext()
383 const int height = runParams[i].surfaceHeight; in getTestRunsForNoContext()
384 const int seed = runParams[i].baseSeed; in getTestRunsForNoContext()
387 params.logFilename = getLogFileName(apiName, runParams[i].configName, 1, i, width, height, seed); in getTestRunsForNoContext()
389 …getBaseOptions(params.args, mustpassDir, apiName, runParams[i].configName, runParams[i].screenRota… in getTestRunsForNoContext()
394 appendConfigArgs(*cfgIter, params.args, runParams[i].fboConfig); in getTestRunsForNoContext()
407 …::ApiType type, vector<TestRunParams>& runs, const ConfigList& configs, const RunParams* runParams, in getTestRunsForSingleConfig() argument
414 if (type != runParams[i].apiType) in getTestRunsForSingleConfig()
417 const char* apiName = getApiName(runParams[i].apiType); in getTestRunsForSingleConfig()
419 const int width = runParams[i].surfaceWidth; in getTestRunsForSingleConfig()
420 const int height = runParams[i].surfaceHeight; in getTestRunsForSingleConfig()
421 const int seed = runParams[i].baseSeed; in getTestRunsForSingleConfig()
424 params.logFilename = getLogFileName(apiName, runParams[i].configName, 1, i, width, height, seed); in getTestRunsForSingleConfig()
426 …getBaseOptions(params.args, mustpassDir, apiName, runParams[i].configName, runParams[i].screenRota… in getTestRunsForSingleConfig()
431 appendConfigArgs(*cfgIter, params.args, runParams[i].fboConfig); in getTestRunsForSingleConfig()
457 …const RunParams* runParams = isFirst ? khronos_mustpass_es_first_cfg : khronos_mustpass_es_other_c… in getTestRunsForES() local
461 if (!glu::contextSupports(glu::ContextType(type), runParams[runNdx].apiType)) in getTestRunsForES()
464 const char* apiName = getApiName(runParams[runNdx].apiType); in getTestRunsForES()
466 const int width = runParams[runNdx].surfaceWidth; in getTestRunsForES()
467 const int height = runParams[runNdx].surfaceHeight; in getTestRunsForES()
468 const int seed = runParams[runNdx].baseSeed; in getTestRunsForES()
473 getLogFileName(apiName, runParams[runNdx].configName, cfgIter->id, runNdx, width, height, seed); in getTestRunsForES()
475 getBaseOptions(params.args, mustpassDir, apiName, runParams[runNdx].configName, in getTestRunsForES()
476 runParams[runNdx].screenRotation, width, height); in getTestRunsForES()
479 appendConfigArgs(*cfgIter, params.args, runParams[runNdx].fboConfig); in getTestRunsForES()
506 const RunParams* runParams = khronos_mustpass_aosp_for_gl_first_cfg; in getTestRunsForESForGL() local
510 const char* apiName = getApiName(runParams[i].apiType); in getTestRunsForESForGL()
512 const int width = runParams[i].surfaceWidth; in getTestRunsForESForGL()
513 const int height = runParams[i].surfaceHeight; in getTestRunsForESForGL()
514 const int seed = runParams[i].baseSeed; in getTestRunsForESForGL()
517 params.logFilename = getLogFileName(apiName, runParams[i].configName, 1, i, width, height, seed); in getTestRunsForESForGL()
519 …getBaseOptions(params.args, mustpassDir, apiName, runParams[i].configName, runParams[i].screenRota… in getTestRunsForESForGL()
524 appendConfigArgs(*cfgIter, params.args, runParams[i].fboConfig); in getTestRunsForESForGL()
543 …const RunParams* runParams = isFirst ? khronos_mustpass_gl_first_cfg : khronos_mustpass_gl_other_c… in getTestRunsForGL() local
547 if (type != runParams[runNdx].apiType) in getTestRunsForGL()
550 const char* apiName = getApiName(runParams[runNdx].apiType); in getTestRunsForGL()
552 const int width = runParams[runNdx].surfaceWidth; in getTestRunsForGL()
553 const int height = runParams[runNdx].surfaceHeight; in getTestRunsForGL()
554 const int seed = runParams[runNdx].baseSeed; in getTestRunsForGL()
559 getLogFileName(apiName, runParams[runNdx].configName, cfgIter->id, runNdx, width, height, seed); in getTestRunsForGL()
561 getBaseOptions(params.args, mustpassDir, apiName, runParams[runNdx].configName, in getTestRunsForGL()
562 runParams[runNdx].screenRotation, width, height); in getTestRunsForGL()
565 appendConfigArgs(*cfgIter, params.args, runParams[runNdx].fboConfig); in getTestRunsForGL()
675 …tor<TestRunParams>::const_iterator runIter = summary.runParams.begin(); runIter != summary.runPara… in writeRunSummary()
764 DE_ASSERT(m_runSessions.empty() && m_summary.runParams.empty()); in init()
795 m_summary.runParams.push_back(*runIter); in init()
817 void TestRunner::initSession(const TestRunParams& runParams) in initSession() argument
824 vector<string> args(runParams.args); in initSession()
825 …args.push_back(string("--deqp-log-filename=") + de::FilePath::join(m_logDirPath, runParams.logFile… in initSession()