Lines Matching refs:m_eglDisplay
112 EGLDisplay getEglDisplay() {return m_eglDisplay;} in getEglDisplay()
121 EGLDisplay m_eglDisplay; member in deqp::egl::SyncTest
136 , m_eglDisplay (EGL_NO_DISPLAY) in SyncTest()
165 eglu::Version version = eglu::getVersion(egl, m_eglDisplay); in hasRequiredEGLVersion()
182 if (!eglu::hasExtension(m_eglTestCtx.getLibrary(), m_eglDisplay, "EGL_KHR_fence_sync")) in hasRequiredEGLExtensions()
188 if (!eglu::hasExtension(m_eglTestCtx.getLibrary(), m_eglDisplay, "EGL_KHR_reusable_sync")) in hasRequiredEGLExtensions()
194 if (!eglu::hasExtension(m_eglTestCtx.getLibrary(), m_eglDisplay, "EGL_KHR_wait_sync")) in hasRequiredEGLExtensions()
252 m_eglDisplay = eglu::getAndInitDisplay(m_eglTestCtx.getNativeDisplay()); in init()
253 m_eglConfig = eglu::chooseSingleConfig(egl, m_eglDisplay, displayAttribList); in init()
263 m_eglContext = egl.createContext(m_eglDisplay, m_eglConfig, EGL_NO_CONTEXT, contextAttribList); in init()
267 …m_nativeWindow = windowFactory.createWindow(&m_eglTestCtx.getNativeDisplay(), m_eglDisplay, m_eglC… in init()
268 …createWindowSurface(m_eglTestCtx.getNativeDisplay(), *m_nativeWindow, m_eglDisplay, m_eglConfig, D… in init()
270 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, m_eglSurface, m_eglSurface, m_eglContext)); in init()
277 if (!eglu::hasExtension(m_eglTestCtx.getLibrary(), m_eglDisplay, "EGL_KHR_reusable_sync")) in init()
288 if (m_eglDisplay != EGL_NO_DISPLAY) in deinit()
292 EGLU_CHECK_CALL(egl, destroySyncKHR(m_eglDisplay, m_sync)); in deinit()
296 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in deinit()
300 EGLU_CHECK_CALL(egl, destroyContext(m_eglDisplay, m_eglContext)); in deinit()
306 EGLU_CHECK_CALL(egl, destroySurface(m_eglDisplay, m_eglSurface)); in deinit()
313 egl.terminate(m_eglDisplay); in deinit()
314 m_eglDisplay = EGL_NO_DISPLAY; in deinit()
338 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
340 m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
390 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, attribList); in test()
392 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << in test()
498 m_sync = (egl.*createSyncFunc)(m_eglDisplay, EGL_NONE, NULL); in test()
500 m_eglDisplay << ", EGL_NONE, NULL)" << TestLog::EndMessage; in test()
564 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, attribs); in test()
566 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << in test()
623 log << TestLog::Message << "eglMakeCurrent(" << m_eglDisplay << in test()
625 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, EGL_NO_SURFACE, in test()
628 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
630 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
689 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
691 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
695 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, 0, 0); in test()
697 "(" << m_eglDisplay << ", " << m_sync << ", 0, 0)" << TestLog::EndMessage; in test()
755 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
757 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
763 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in test()
765 m_eglDisplay << ", " << m_sync << ", EGL_SIGNALED_KHR)" << in test()
777 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, 0, eglTime); in test()
779 "(" << m_eglDisplay << ", " << m_sync << ", 0, " << eglTimeName << ")" << in test()
835 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
837 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
844 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in test()
846 m_eglDisplay << ", " << m_sync << ", EGL_SIGNALED_KHR)" << in test()
858 log << TestLog::Message << "eglMakeCurrent(" << m_eglDisplay << in test()
860 EGLU_CHECK_CALL(egl, makeCurrent(m_eglDisplay, EGL_NO_SURFACE, in test()
863 EGLint result = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, 0, eglTime); in test()
865 "(" << m_eglDisplay << ", " << m_sync << ", 0, " << eglTimeName << ")" << in test()
920 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
922 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
928 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in test()
930 m_eglDisplay << ", " << m_sync << ", EGL_SIGNALED_KHR)" << in test()
935 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, flags, eglTime); in test()
937 "(" << m_eglDisplay << ", " << m_sync << ", " << flagsName << ", " << in test()
996 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
998 m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1069 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, sync, 0, eglTime); in test()
1071 "(" << m_eglDisplay << ", " << syncName << ", 0, " << eglTimeName << ")" << in test()
1135 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1137 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1142 EGLU_CHECK_CALL_FPTR(egl, (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, in test()
1144 log << TestLog::Message << funcNames[FUNC_NAME_GET_SYNC_ATTRIB] << "(" << m_eglDisplay << in test()
1198 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1200 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1205 EGLU_CHECK_CALL_FPTR(egl, (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, attribute, &status)); in test()
1207 m_eglDisplay << ", " << m_sync << ", " << attributeName << ", {" << in test()
1271 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1273 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1279 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in test()
1281 m_eglDisplay << ", " << m_sync << ", EGL_SIGNALED_KHR)" << in test()
1294 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, flags, eglTime); in test()
1296 m_eglDisplay << ", " << m_sync << ", " << flagsName << ", " << in test()
1302 EGLU_CHECK_CALL_FPTR(egl, (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, attribute, &status)); in test()
1304 m_eglDisplay << ", " << m_sync << ", " << attributeName << ", {" << in test()
1372 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1374 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1379 EGLU_CHECK_CALL_FPTR(egl, (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, in test()
1382 m_eglDisplay << ", " << m_sync << ", " << attributeName << ", {" << in test()
1439 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1441 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1515 EGLBoolean result = (egl.*getSyncAttribFunc)(m_eglDisplay, syncValue, in test()
1518 "(" << m_eglDisplay << ", " << syncName << ", " << attributeName << ", {" << in test()
1584 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1586 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1591 EGLBoolean result = (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, EGL_NONE, &condition); in test()
1593 "(" << m_eglDisplay << ", " << m_sync << ", EGL_NONE, {" << condition << "})" << in test()
1659 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1661 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1665 EGLBoolean result = (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, attribute, NULL); in test()
1667 "(" << m_eglDisplay << ", " << m_sync << ", " << attributeName << ", NULL)" << in test()
1733 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1735 m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1740 m_eglDisplay << ", " << m_sync << ")" << TestLog::EndMessage; in test()
1741 EGLU_CHECK_CALL_FPTR(egl, (egl.*destroySyncFunc)(m_eglDisplay, m_sync)); in test()
1793 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1795 m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1862 EGLBoolean result = (egl.*destroySyncFunc)(m_eglDisplay, syncValue); in test()
1864 "(" << m_eglDisplay << ", " << syncValue << ")" << TestLog::EndMessage; in test()
1928 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1930 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
1934 waitSyncStatusType status = (egl.*waitSyncFunc)(m_eglDisplay, m_sync, 0); in test()
1936 m_eglDisplay << ", " << m_sync << ", 0, 0)" << TestLog::EndMessage; in test()
1993 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1995 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
2062 EGLint status = (egl.*waitSyncFunc)(m_eglDisplay, syncValue, 0); in test()
2064 "(" << m_eglDisplay << ", " << syncValue << ", 0)" << TestLog::EndMessage; in test()
2126 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
2128 "(" << m_eglDisplay << ", " << getSyncTypeName(m_syncType) << ", NULL)" << in test()
2132 EGLint status = (egl.*waitSyncFunc)(m_eglDisplay, m_sync, 0xFFFFFFFF); in test()
2134 "(" << m_eglDisplay << ", " << m_sync << ", 0xFFFFFFFF)" << TestLog::EndMessage; in test()