Lines Matching refs:result
403 // Set result
549 EGLBoolean result;
551 result = egl.getConfigs(m_display, NULL, 0, &configCount);
552 thread.getLog() << ThreadLog::BeginMessage << result << " = eglGetConfigs(" << m_display << ", NULL, 0, " << configCount << ")" << ThreadLog::EndMessage;
555 if (!result)
564 EGLBoolean result;
566 result = egl.getConfigs(m_display, &(configs[configs.size() - configCount]), configCount, &configCount);
567 thread.getLog() << ThreadLog::BeginMessage << result << " = eglGetConfigs(" << m_display << ", &configs' " << configCount << ", " << configCount << ")" << ThreadLog::EndMessage;
570 if (!result)
597 EGLBoolean result;
599 result = egl.chooseConfig(m_display, attribList, NULL, 0, &configCount);
600 thread.getLog() << ThreadLog::BeginMessage << result << " = eglChooseConfig(" << m_display << ", { EGL_NONE }, NULL, 0, " << configCount << ")" << ThreadLog::EndMessage;
603 if (!result)
612 EGLBoolean result;
614 result = egl.chooseConfig(m_display, attribList, &(configs[configs.size() - configCount]), configCount, &configCount);
615 thread.getLog() << ThreadLog::BeginMessage << result << " = eglChooseConfig(" << m_display << ", { EGL_NONE }, &configs, " << configCount << ", " << configCount << ")" << ThreadLog::EndMessage;
618 if (!result)
681 EGLBoolean result;
683 result = egl.getConfigAttrib(m_display, config, attribute, &value);
684 thread.getLog() << ThreadLog::BeginMessage << result << " = eglGetConfigAttrib(" << m_display << ", " << config << ", " << configAttributeToString(attribute) << ", " << value << ")" << ThreadLog::EndMessage;
687 if (!result)
1202 EGLBoolean result;
1204 result = egl.destroySurface(m_display, pbuffers[pbufferNdx]);
1205 thread.getLog() << ThreadLog::BeginMessage << result << " = eglDestroySurface(" << m_display << ", " << pbuffers[pbufferNdx] << ")" << ThreadLog::EndMessage;
1389 EGLBoolean result;
1392 result = egl.querySurface(m_display, surface, attribute, &value);
1393 thread.getLog() << ThreadLog::BeginMessage << result << " = eglQuerySurface(" << m_display << ", " << surface << ", " << attribute << ", " << value << ")" << ThreadLog::EndMessage;
1409 EGLBoolean result;
1411 result = egl.queryContext(m_display, context, attribute, &value);
1412 thread.getLog() << ThreadLog::BeginMessage << result << " = eglQueryContext(" << m_display << ", " << context << ", " << attribute << ", " << value << ")" << ThreadLog::EndMessage;
1434 EGLBoolean result;
1436 result = egl.destroySurface(m_display, pbuffers[pbufferNdx]);
1437 thread.getLog() << ThreadLog::BeginMessage << result << " = eglDestroySurface(" << m_display << ", " << pbuffers[pbufferNdx] << ")" << ThreadLog::EndMessage;