Lines Matching defs:configCount
560 EGLint configCount;
566 result = egl.getConfigs(m_display, NULL, 0, &configCount);
567 thread.getLog() << ThreadLog::BeginMessage << result << " = eglGetConfigs(" << m_display << ", NULL, 0, " << configCount << ")" << ThreadLog::EndMessage;
574 configs.resize(configs.size() + configCount);
577 if (configCount != 0)
581 result = egl.getConfigs(m_display, &(configs[configs.size() - configCount]), configCount, &configCount);
582 thread.getLog() << ThreadLog::BeginMessage << result << " = eglGetConfigs(" << m_display << ", &configs' " << configCount << ", " << configCount << ")" << ThreadLog::EndMessage;
604 EGLint configCount;
614 result = egl.chooseConfig(m_display, attribList, NULL, 0, &configCount);
615 thread.getLog() << ThreadLog::BeginMessage << result << " = eglChooseConfig(" << m_display << ", { EGL_NONE }, NULL, 0, " << configCount << ")" << ThreadLog::EndMessage;
622 configs.resize(configs.size() + configCount);
625 if (configCount != 0)
629 result = egl.chooseConfig(m_display, attribList, &(configs[configs.size() - configCount]), configCount, &configCount);
630 thread.getLog() << ThreadLog::BeginMessage << result << " = eglChooseConfig(" << m_display << ", { EGL_NONE }, &configs, " << configCount << ", " << configCount << ")" << ThreadLog::EndMessage;
931 EGLint configCount;
939 EGLU_CHECK_CALL(egl, chooseConfig(m_display, attribList, &m_config, 1, &configCount));
941 if (configCount == 0)