• Home
  • Raw
  • Download

Lines Matching refs:m_sync

126 	EGLSyncKHR						m_sync;  member in deqp::egl::SyncTest
141 , m_sync (EGL_NO_SYNC_KHR) in SyncTest()
290 if (m_sync != EGL_NO_SYNC_KHR) in deinit()
292 EGLU_CHECK_CALL(egl, destroySyncKHR(m_eglDisplay, m_sync)); in deinit()
293 m_sync = EGL_NO_SYNC_KHR; in deinit()
338 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
339 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << "(" << in test()
390 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, attribList); in test()
391 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
437 m_sync = (egl.*createSyncFunc)(EGL_NO_DISPLAY, m_syncType, NULL); in test()
438 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
454 TCU_CHECK(m_sync == eglNoSync); in test()
498 m_sync = (egl.*createSyncFunc)(m_eglDisplay, EGL_NONE, NULL); in test()
499 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << "(" << in test()
514 TCU_CHECK(m_sync == eglNoSync); in test()
564 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, attribs); in test()
565 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
580 TCU_CHECK(m_sync == eglNoSync); in test()
628 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
629 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
644 TCU_CHECK(m_sync == eglNoSync); in test()
689 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
690 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
756 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
836 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
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()
921 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
997 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << "(" << in test()
1002 EGLint status = (egl.*clientWaitSyncFunc)(EGL_NO_DISPLAY, m_sync, flags, eglTime); in test()
1004 "(EGL_NO_DISPLAY, " << m_sync << ", " << flagsName << ", " << in test()
1135 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1136 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1142 EGLU_CHECK_CALL_FPTR(egl, (egl.*getSyncAttribFunc)(m_eglDisplay, m_sync, in test()
1145 ", " << m_sync << ", " << attributeName << ", {" << type << "})" << in test()
1198 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1199 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
1272 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
1373 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
1440 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1446 EGLBoolean result = (egl.*getSyncAttribFunc)(EGL_NO_DISPLAY, m_sync, attribute, &condition); in test()
1448 "(EGL_NO_DISPLAY, " << m_sync << ", " << attributeName << ", {" << in test()
1584 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1585 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
1660 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
1740 m_eglDisplay << ", " << m_sync << ")" << TestLog::EndMessage; in test()
1741 EGLU_CHECK_CALL_FPTR(egl, (egl.*destroySyncFunc)(m_eglDisplay, m_sync)); in test()
1742 m_sync = syncValue; in test()
1793 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1799 EGLBoolean result = (egl.*destroySyncFunc)(EGL_NO_DISPLAY, m_sync); in test()
1801 "(EGL_NO_DISPLAY, " << m_sync << ")" << TestLog::EndMessage; in test()
1928 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
1929 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << 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()
1994 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
1999 waitSyncStatusType status = (egl.*waitSyncFunc)(EGL_NO_DISPLAY, m_sync, 0); in test()
2001 "(EGL_NO_DISPLAY, " << m_sync << ", 0)" << TestLog::EndMessage; in test()
2126 m_sync = (egl.*createSyncFunc)(m_eglDisplay, m_syncType, NULL); in test()
2127 log << TestLog::Message << m_sync << " = " << funcNames[FUNC_NAME_CREATE_SYNC] << in test()
2132 EGLint status = (egl.*waitSyncFunc)(m_eglDisplay, m_sync, 0xFFFFFFFF); in test()
2134 "(" << m_eglDisplay << ", " << m_sync << ", 0xFFFFFFFF)" << TestLog::EndMessage; in test()