Lines Matching defs:params
247 RobustnessTestCase (EglTestContext& eglTestCtx, const char* name, const char* description, Params params);
306 RobustnessTestCase::RobustnessTestCase (EglTestContext& eglTestCtx, const char* name, const char* description, Params params)
308 , m_params (params)
366 glu::ApiType paramsToApiType (const RobustnessTestCase::Params& params)
369 if (params.getShaderType() == SHADERTYPE_COMPUTE ||
370 params.getResourceType() == RESOURCETYPE_SSBO ||
371 params.getContextResetType() == CONTEXTRESETTYPE_SHADER_OOB)
441 void checkGLSupportForParams (const glw::Functions& gl, const RobustnessTestCase::Params& params)
444 if (params.getShaderType() == SHADERTYPE_COMPUTE ||
445 params.getResourceType() == RESOURCETYPE_SSBO ||
446 params.getContextResetType() == CONTEXTRESETTYPE_SHADER_OOB)
1296 de::SharedPtr<ContextReset> contextResetFactory (const RobustnessTestCase::Params params, glw::Functions& gl, tcu::TestLog& log)
1298 if (params.getContextResetType() == CONTEXTRESETTYPE_FIXED_FUNC_OOB)
1299 return de::SharedPtr<ContextReset>(new FixedFunctionOOB(gl, log, params.getFixedFunctionType()));
1301 if (params.getContextResetType() == CONTEXTRESETTYPE_SHADER_OOB)
1302 return de::SharedPtr<ContextReset>(new ShadersOOB(gl, log, params.getShaderType(), params.getResourceType(), params.getReadWriteType()));
1314 ContextResetCase (EglTestContext& eglTestCtx, const char* name, const char* description, Params params);
1329 ContextResetCase::ContextResetCase (EglTestContext& eglTestCtx, const char* name, const char* description, Params params)
1330 : RobustnessTestCase (eglTestCtx, name, description, params) {}
1405 BasicResetCase (EglTestContext& eglTestCtx, const char* name, const char* description, Params params)
1406 : ContextResetCase (eglTestCtx, name, description, params) {}