• Home
  • Raw
  • Download

Lines Matching refs:m_sync

127 	EGLSyncKHR						m_sync;  member in deqp::egl::SyncTest
142 , m_sync (EGL_NO_SYNC_KHR) in SyncTest()
292 if (m_sync != EGL_NO_SYNC_KHR) in deinit()
294 EGLU_CHECK_CALL(egl, destroySyncKHR(m_eglDisplay, m_sync)); in deinit()
295 m_sync = EGL_NO_SYNC_KHR; in deinit()
340 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
341 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << "(" << in test()
392 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, attribList); in test()
393 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
439 m_sync = (egl.*createSyncFunc)(EGL_NO_DISPLAY, m_syncType, NULL); in test()
440 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
456 TCU_CHECK(m_sync == eglNoSync); in test()
500 m_sync = (egl.*createSyncFunc)(m_eglDisplay, EGL_NONE, NULL); in test()
501 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << "(" << in test()
516 TCU_CHECK(m_sync == eglNoSync); in test()
566 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, attribs); in test()
567 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
582 TCU_CHECK(m_sync == eglNoSync); in test()
630 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
631 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
646 TCU_CHECK(m_sync == eglNoSync); in test()
691 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
692 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
697 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, 0, 0); in test()
699 "(" << m_eglDisplay << ", " << m_sync << ", 0, 0)" << TestLog::EndMessage; in test()
757 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
758 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
765 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in test()
767 m_eglDisplay << ", " << m_sync << ", EGL_SIGNALED_KHR)" << in test()
779 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, 0, eglTime); in test()
781 "(" << m_eglDisplay << ", " << m_sync << ", 0, " << eglTimeName << ")" << in test()
837 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
838 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
846 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in test()
848 m_eglDisplay << ", " << m_sync << ", EGL_SIGNALED_KHR)" << in test()
865 EGLint result = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, 0, eglTime); in test()
867 "(" << m_eglDisplay << ", " << m_sync << ", 0, " << eglTimeName << ")" << in test()
922 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
923 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
930 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in test()
932 m_eglDisplay << ", " << m_sync << ", EGL_SIGNALED_KHR)" << in test()
937 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, flags, eglTime); in test()
939 "(" << m_eglDisplay << ", " << m_sync << ", " << flagsName << ", " << in test()
998 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
999 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << "(" << in test()
1004 EGLint status = (egl.*clientWaitSyncFunc)(EGL_NO_DISPLAY, m_sync, flags, eglTime); in test()
1006 "(EGL_NO_DISPLAY, " << m_sync << ", " << flagsName << ", " << in test()
1137 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1138 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1144 EGLU_CHECK_CALL_FPTR(egl, (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, in test()
1147 ", " << m_sync << ", " << attributeName << ", {" << type << "})" << in test()
1200 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1201 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1207 EGLU_CHECK_CALL_FPTR(egl, (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, attribute, &status)); in test()
1209 m_eglDisplay << ", " << m_sync << ", " << attributeName << ", {" << in test()
1273 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1274 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1281 EGLBoolean ret = egl.signalSyncKHR(m_eglDisplay, m_sync, EGL_SIGNALED_KHR); in test()
1283 m_eglDisplay << ", " << m_sync << ", EGL_SIGNALED_KHR)" << in test()
1296 EGLint status = (egl.*clientWaitSyncFunc)(m_eglDisplay, m_sync, flags, eglTime); in test()
1298 m_eglDisplay << ", " << m_sync << ", " << flagsName << ", " << in test()
1304 EGLU_CHECK_CALL_FPTR(egl, (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, attribute, &status)); in test()
1306 m_eglDisplay << ", " << m_sync << ", " << attributeName << ", {" << in test()
1374 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1375 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1381 EGLU_CHECK_CALL_FPTR(egl, (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, in test()
1384 m_eglDisplay << ", " << m_sync << ", " << attributeName << ", {" << in test()
1441 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1442 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1448 EGLBoolean result = (egl.*getSyncAttribFunc)(EGL_NO_DISPLAY, m_sync, attribute, &condition); in test()
1450 "(EGL_NO_DISPLAY, " << m_sync << ", " << attributeName << ", {" << in test()
1586 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1587 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1593 EGLBoolean result = (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, EGL_NONE, &condition); in test()
1595 "(" << m_eglDisplay << ", " << m_sync << ", EGL_NONE, {" << condition << "})" << in test()
1662 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1663 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1738 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1745 m_eglDisplay << ", " << m_sync << ")" << TestLog::EndMessage; in test()
1746 EGLU_CHECK_CALL_FPTR(egl, (egl.*destroySyncFunc)(m_eglDisplay, m_sync)); in test()
1747 m_sync = syncValue; in test()
1798 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1804 EGLBoolean result = (egl.*destroySyncFunc)(EGL_NO_DISPLAY, m_sync); in test()
1806 "(EGL_NO_DISPLAY, " << m_sync << ")" << TestLog::EndMessage; in test()
1933 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1934 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1939 waitSyncStatusType status = (egl.*waitSyncFunc)(m_eglDisplay, m_sync, 0); in test()
1941 m_eglDisplay << ", " << m_sync << ", 0, 0)" << TestLog::EndMessage; in test()
1998 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1999 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
2004 waitSyncStatusType status = (egl.*waitSyncFunc)(EGL_NO_DISPLAY, m_sync, 0); in test()
2006 "(EGL_NO_DISPLAY, " << m_sync << ", 0)" << TestLog::EndMessage; in test()
2131 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
2132 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
2137 EGLint status = (egl.*waitSyncFunc)(m_eglDisplay, m_sync, 0xFFFFFFFF); in test()
2139 "(" << m_eglDisplay << ", " << m_sync << ", 0xFFFFFFFF)" << TestLog::EndMessage; in test()