Home
last modified time | relevance | path

Searched refs:configCount (Results 1 – 4 of 4) sorted by relevance

/external/deqp/modules/egl/
DteglMultiThreadTests.cpp560 EGLint configCount; in runThread() local
566 result = egl.getConfigs(m_display, NULL, 0, &configCount); in runThread()
567 …sage << result << " = eglGetConfigs(" << m_display << ", NULL, 0, " << configCount << ")" << Thre… in runThread()
574 configs.resize(configs.size() + configCount); in runThread()
577 if (configCount != 0) in runThread()
581 …t = egl.getConfigs(m_display, &(configs[configs.size() - configCount]), configCount, &configCount); in runThread()
582 …t << " = eglGetConfigs(" << m_display << ", &configs' " << configCount << ", " << configCount << "… in runThread()
604 EGLint configCount; in runThread() local
614 result = egl.chooseConfig(m_display, attribList, NULL, 0, &configCount); in runThread()
615 …< " = eglChooseConfig(" << m_display << ", { EGL_NONE }, NULL, 0, " << configCount << ")" << Thre… in runThread()
[all …]
DteglMemoryStressTests.cpp359 EGLint configCount = 0; in init() local
375 EGLU_CHECK_CALL(egl, chooseConfig(m_display, attribList, &m_config, 1, &configCount)); in init()
377 TCU_CHECK(configCount != 0); in init()
DteglMakeCurrentPerfTests.cpp205 EGLint configCount = 0; in chooseConfig() local
207 EGLU_CHECK_CALL(egl, chooseConfig(m_display, attribList, &m_config, 1, &configCount)); in chooseConfig()
209 if (configCount <= 0) in chooseConfig()
/external/deqp/framework/egl/
DegluUtil.cpp101 EGLint configCount = 0; in getConfigs() local
102 EGLU_CHECK_CALL(egl, getConfigs(display, DE_NULL, 0, &configCount)); in getConfigs()
104 if (configCount > 0) in getConfigs()
106 configs.resize(configCount); in getConfigs()
107 EGLU_CHECK_CALL(egl, getConfigs(display, &(configs[0]), (EGLint)configs.size(), &configCount)); in getConfigs()