Home
last modified time | relevance | path

Searched refs:ust (Results 1 - 25 of 62) sorted by relevance

123

/third_party/mesa3d/src/glx/apple/
H A Dglx_empty.c57 int64_t * ust, int64_t * msc, int64_t * sbc) in glXGetSyncValuesOML()
61 (void) ust; in glXGetSyncValuesOML()
83 int64_t remainder, int64_t * ust, in glXWaitForMscOML()
91 (void) ust; in glXWaitForMscOML()
100 int64_t target_sbc, int64_t * ust, in glXWaitForSbcOML()
106 (void) ust; in glXWaitForSbcOML()
56 glXGetSyncValuesOML(Display * dpy, GLXDrawable drawable, int64_t * ust, int64_t * msc, int64_t * sbc) glXGetSyncValuesOML() argument
81 glXWaitForMscOML(Display * dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t * ust, int64_t * msc, int64_t * sbc) glXWaitForMscOML() argument
99 glXWaitForSbcOML(Display * dpy, GLXDrawable drawable, int64_t target_sbc, int64_t * ust, int64_t * msc, int64_t * sbc) glXWaitForSbcOML() argument
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLSyncControlTest.cpp200 EGLuint64KHR ust = 0, msc = 0, sbc = 0; in TEST_F() local
204 eglGetSyncValuesCHROMIUM(mDisplay, mSurface, &ust, &msc, &sbc); in TEST_F()
206 ASSERT_EGL_TRUE(eglGetSyncValuesCHROMIUM(mDisplay, mSurface, &ust, &msc, &sbc)); in TEST_F()
207 // Initial msc and sbc value should be true. Initial ust value is unspecified. in TEST_F()
222 ASSERT_EGL_TRUE(eglGetSyncValuesCHROMIUM(mDisplay, mSurface, &ust, &msc, &sbc)); in TEST_F()
227 // sbc should change to 1. msc and ust to some non-zero values. in TEST_F()
229 ASSERT_GT(ust, 0ull); in TEST_F()
249 // sbc2 should be 2. msc2 and ust2 should be greater than previous msc and ust values. in TEST_F()
251 ASSERT_GT(ust2, ust); in TEST_F()
/third_party/mesa3d/include/EGL/
H A Deglextchromium.h47 EGLDisplay dpy, EGLSurface surface, EGLuint64CHROMIUM *ust,
51 (EGLDisplay dpy, EGLSurface surface, EGLuint64CHROMIUM *ust,
/third_party/mesa3d/src/loader/
H A Dloader_dri3_helper.h156 uint64_t ust, msc; member
189 * recv_sbc, ust, msc, recv_msc_serial,
221 int64_t *ust, int64_t *msc, int64_t *sbc);
232 int64_t target_sbc, int64_t *ust,
H A Dloader_dri3_helper.c538 draw->vtable->show_fps(draw, ce->ust); in dri3_handle_present_event()
540 draw->ust = ce->ust; in dri3_handle_present_event()
543 draw->notify_ust = ce->ust; in dri3_handle_present_event()
608 int64_t *ust, int64_t *msc, int64_t *sbc) in loader_dri3_wait_for_msc()
628 *ust = draw->notify_ust; in loader_dri3_wait_for_msc()
644 int64_t target_sbc, int64_t *ust, in loader_dri3_wait_for_sbc()
664 *ust = draw->ust; in loader_dri3_wait_for_sbc()
2319 int64_t ust, ms in loader_dri3_swapbuffer_barrier() local
605 loader_dri3_wait_for_msc(struct loader_dri3_drawable *draw, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) loader_dri3_wait_for_msc() argument
643 loader_dri3_wait_for_sbc(struct loader_dri3_drawable *draw, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) loader_dri3_wait_for_sbc() argument
[all...]
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri.c86 int64_t ust = ((((uint64_t)ust_hi) << 32) | ust_lo) * 1000; in vl_dri2_handle_stamps() local
89 if (scrn->last_ust && (ust > scrn->last_ust) && in vl_dri2_handle_stamps()
91 scrn->ns_frame = (ust - scrn->last_ust) / (msc - scrn->last_msc); in vl_dri2_handle_stamps()
93 scrn->last_ust = ust; in vl_dri2_handle_stamps()
/third_party/mesa3d/src/glx/
H A Dg_glxglvnddispatchfuncs.c712 int64_t *ust, int64_t *msc, int64_t *sbc) in dispatch_GetSyncValuesOML()
725 return pGetSyncValuesOML(dpy, drawable, ust, msc, sbc); in dispatch_GetSyncValuesOML()
929 int64_t remainder, int64_t *ust, in dispatch_WaitForMscOML()
943 return pWaitForMscOML(dpy, drawable, target_msc, divisor, remainder, ust, msc, sbc); in dispatch_WaitForMscOML()
949 int64_t target_sbc, int64_t *ust, in dispatch_WaitForSbcOML()
963 return pWaitForSbcOML(dpy, drawable, target_sbc, ust, msc, sbc); in dispatch_WaitForSbcOML()
711 dispatch_GetSyncValuesOML(Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc) dispatch_GetSyncValuesOML() argument
927 dispatch_WaitForMscOML(Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) dispatch_WaitForMscOML() argument
948 dispatch_WaitForSbcOML(Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) dispatch_WaitForSbcOML() argument
H A Dglxcmds.c1885 int64_t ust, msc, sbc; in glXGetVideoSyncSGI() local
1907 ret = psc->driScreen->getDrawableMSC(psc, pdraw, &ust, &msc, &sbc); in glXGetVideoSyncSGI()
1923 int64_t ust, msc, sbc; in glXWaitVideoSyncSGI() local
1943 ret = psc->driScreen->waitForMSC(pdraw, 0, divisor, remainder, &ust, &msc, in glXWaitVideoSyncSGI()
2076 int64_t *ust, int64_t *msc, int64_t *sbc) in glXGetSyncValuesOML()
2092 ret = psc->driScreen->getDrawableMSC(psc, pdraw, ust, msc, sbc); in glXGetSyncValuesOML()
2238 int64_t divisor, int64_t remainder, int64_t *ust, in glXWaitForMscOML()
2259 ust, msc, sbc); in glXWaitForMscOML()
2270 int64_t *ust, int64_t *msc, int64_t *sbc) in glXWaitForSbcOML()
2286 ret = psc->driScreen->waitForSBC(pdraw, target_sbc, ust, ms in glXWaitForSbcOML()
2075 glXGetSyncValuesOML(Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc) glXGetSyncValuesOML() argument
2237 glXWaitForMscOML(Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) glXWaitForMscOML() argument
2269 glXWaitForSbcOML(Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) glXWaitForSbcOML() argument
[all...]
H A Dglxclient.h129 int64_t *ust, int64_t *msc, int64_t *sbc);
131 int64_t divisor, int64_t remainder, int64_t *ust,
133 int (*waitForSBC)(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust,
H A Ddri2_glx.c83 /* For XCB's handling of ust/msc/sbc counters, we have to hand it the high and
349 int64_t *ust, int64_t *msc, int64_t *sbc) in dri2DrawableGetMSC()
361 *ust = merge_counter(get_msc_reply->ust_hi, get_msc_reply->ust_lo); in dri2DrawableGetMSC()
371 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) in dri2WaitForMSC()
393 *ust = merge_counter(wait_msc_reply->ust_hi, wait_msc_reply->ust_lo); in dri2WaitForMSC()
402 dri2WaitForSBC(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust, in dri2WaitForSBC() argument
419 *ust = merge_counter(wait_sbc_reply->ust_hi, wait_sbc_reply->ust_lo); in dri2WaitForSBC()
348 dri2DrawableGetMSC(struct glx_screen *psc, __GLXDRIdrawable *pdraw, int64_t *ust, int64_t *msc, int64_t *sbc) dri2DrawableGetMSC() argument
370 dri2WaitForMSC(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) dri2WaitForMSC() argument
H A Ddri3_glx.c424 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) in dri3_wait_for_msc()
429 remainder, ust, msc, sbc); in dri3_wait_for_msc()
441 int64_t *ust, int64_t *msc, int64_t *sbc) in dri3_drawable_get_msc()
443 return dri3_wait_for_msc(pdraw, 0, 0, 0, ust, msc,sbc); in dri3_drawable_get_msc()
453 dri3_wait_for_sbc(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust, in dri3_wait_for_sbc() argument
459 ust, msc, sbc); in dri3_wait_for_sbc()
423 dri3_wait_for_msc(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) dri3_wait_for_msc() argument
440 dri3_drawable_get_msc(struct glx_screen *psc, __GLXDRIdrawable *pdraw, int64_t *ust, int64_t *msc, int64_t *sbc) dri3_drawable_get_msc() argument
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DSurfaceGL.h25 egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) override;
H A DSurfaceGL.cpp31 egl::Error SurfaceGL::getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) in getSyncValues() argument
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
H A DWindowSurfaceGLX.cpp294 egl::Error WindowSurfaceGLX::getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) in getSyncValues() argument
296 if (!mGLX.getSyncValuesOML(mGLXWindow, reinterpret_cast<int64_t *>(ust), in getSyncValues()
H A DWindowSurfaceGLX.h59 egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) override;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
H A DSwapChainD3D.h72 virtual egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) = 0;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DSwapChain9.h57 egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) override;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/
H A DSurfaceNULL.cpp66 egl::Error SurfaceNULL::getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) in getSyncValues() argument
H A DSurfaceNULL.h38 egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) override;
/third_party/skia/third_party/externals/angle2/include/EGL/
H A Deglext_angle.h240 EGLuint64KHR *ust,
246 EGLuint64KHR *ust,
/third_party/mesa3d/include/GL/
H A Dglxext.h703 typedef Bool ( *PFNGLXGETSYNCVALUESOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc);
706 typedef Bool ( *PFNGLXWAITFORMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
707 typedef Bool ( *PFNGLXWAITFORSBCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc);
709 Bool glXGetSyncValuesOML (Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc);
712 Bool glXWaitForMscOML (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
713 Bool glXWaitForSbcOML (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc);
H A Dwglext.h844 typedef BOOL (WINAPI * PFNWGLGETSYNCVALUESOMLPROC) (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
848 typedef BOOL (WINAPI * PFNWGLWAITFORMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
849 typedef BOOL (WINAPI * PFNWGLWAITFORSBCOMLPROC) (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc);
851 BOOL WINAPI wglGetSyncValuesOML (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
855 BOOL WINAPI wglWaitForMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
856 BOOL WINAPI wglWaitForSbcOML (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc);
/third_party/openGLES/api/GL/
H A Dglxext.h688 typedef Bool ( *PFNGLXGETSYNCVALUESOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc);
691 typedef Bool ( *PFNGLXWAITFORMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
692 typedef Bool ( *PFNGLXWAITFORSBCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc);
694 Bool glXGetSyncValuesOML (Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc);
697 Bool glXWaitForMscOML (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
698 Bool glXWaitForSbcOML (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc);
H A Dwglext.h825 typedef BOOL (WINAPI * PFNWGLGETSYNCVALUESOMLPROC) (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
829 typedef BOOL (WINAPI * PFNWGLWAITFORMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
830 typedef BOOL (WINAPI * PFNWGLWAITFORSBCOMLPROC) (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc);
832 BOOL WINAPI wglGetSyncValuesOML (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
836 BOOL WINAPI wglWaitForMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
837 BOOL WINAPI wglWaitForSbcOML (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc);
/third_party/skia/third_party/externals/swiftshader/include/GL/
H A Dglxext.h687 typedef Bool ( *PFNGLXGETSYNCVALUESOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc);
690 typedef Bool ( *PFNGLXWAITFORMSCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
691 typedef Bool ( *PFNGLXWAITFORSBCOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc);
693 Bool glXGetSyncValuesOML (Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc);
696 Bool glXWaitForMscOML (Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
697 Bool glXWaitForSbcOML (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc);

Completed in 34 milliseconds

123