Home
last modified time | relevance | path

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

/external/deqp/modules/egl/
DteglMultiThreadTests.cpp544 EGLint configCount; in runThread() local
550 result = egl.getConfigs(m_display, NULL, 0, &configCount); in runThread()
551 …sage << result << " = eglGetConfigs(" << m_display << ", NULL, 0, " << configCount << ")" << Thre… in runThread()
558 configs.resize(configs.size() + configCount); in runThread()
561 if (configCount != 0) in runThread()
565 …t = egl.getConfigs(m_display, &(configs[configs.size() - configCount]), configCount, &configCount); in runThread()
566 …t << " = eglGetConfigs(" << m_display << ", &configs' " << configCount << ", " << configCount << "… in runThread()
588 EGLint configCount; in runThread() local
598 result = egl.chooseConfig(m_display, attribList, NULL, 0, &configCount); in runThread()
599 …< " = 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.cpp110 EGLint configCount = 0; in getConfigs() local
111 EGLU_CHECK_CALL(egl, getConfigs(display, DE_NULL, 0, &configCount)); in getConfigs()
113 if (configCount > 0) in getConfigs()
115 configs.resize(configCount); in getConfigs()
116 EGLU_CHECK_CALL(egl, getConfigs(display, &(configs[0]), (EGLint)configs.size(), &configCount)); in getConfigs()