HomeSort by relevance Sort by last modified time
    Searched defs:configCount (Results 1 - 4 of 4) sorted by null

  /external/deqp/framework/egl/
egluUtil.cpp 110 EGLint configCount = 0;
111 EGLU_CHECK_CALL(egl, getConfigs(display, DE_NULL, 0, &configCount));
113 if (configCount > 0)
115 configs.resize(configCount);
116 EGLU_CHECK_CALL(egl, getConfigs(display, &(configs[0]), (EGLint)configs.size(), &configCount));
  /external/deqp/modules/egl/
teglMakeCurrentPerfTests.cpp 205 EGLint configCount = 0;
207 EGLU_CHECK_CALL(egl, chooseConfig(m_display, attribList, &m_config, 1, &configCount));
209 if (configCount <= 0)
teglMemoryStressTests.cpp 359 EGLint configCount = 0;
375 EGLU_CHECK_CALL(egl, chooseConfig(m_display, attribList, &m_config, 1, &configCount));
377 TCU_CHECK(configCount != 0);
teglMultiThreadTests.cpp 544 EGLint configCount;
550 result = egl.getConfigs(m_display, NULL, 0, &configCount);
551 thread.getLog() << ThreadLog::BeginMessage << result << " = eglGetConfigs(" << m_display << ", NULL, 0, " << configCount << ")" << ThreadLog::EndMessage;
558 configs.resize(configs.size() + configCount);
561 if (configCount != 0)
565 result = egl.getConfigs(m_display, &(configs[configs.size() - configCount]), configCount, &configCount);
566 thread.getLog() << ThreadLog::BeginMessage << result << " = eglGetConfigs(" << m_display << ", &configs' " << configCount << ", " << configCount << ")" << ThreadLog::EndMessage
    [all...]

Completed in 518 milliseconds