Home
last modified time | relevance | path

Searched refs:dpy (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/openglperf/jni/
DOpenGlPerfNativeJni.cpp26 typedef EGLSyncKHR EGLAPIENTRY (*TypeEglCreateSyncKHR)(EGLDisplay dpy, \
28 typedef EGLBoolean EGLAPIENTRY (*TypeEglDestroySyncKHR)(EGLDisplay dpy, \
30 typedef EGLint EGLAPIENTRY (*TypeEglClientWaitSyncKHR)(EGLDisplay dpy, \
62 EGLDisplay dpy = eglGetCurrentDisplay(); in Java_android_openglperf_cts_OpenGlPerfNative_waitForEglCompletion() local
63 if (!IsEglKHRFenceSyncSupported(dpy)) { in Java_android_openglperf_cts_OpenGlPerfNative_waitForEglCompletion()
66 EGLSyncKHR sync = mEglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL); in Java_android_openglperf_cts_OpenGlPerfNative_waitForEglCompletion()
71 EGLint result = mEglClientWaitSyncKHR(dpy, sync, EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, waitTimeInNs); in Java_android_openglperf_cts_OpenGlPerfNative_waitForEglCompletion()
79 mEglDestroySyncKHR(dpy, sync); in Java_android_openglperf_cts_OpenGlPerfNative_waitForEglCompletion()
/cts/hostsidetests/gputools/layers/jni/
DglesLayer.cpp129 EGLAPI EGLBoolean EGLAPIENTRY glesLayer_eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)… in glesLayer_eglInitialize() argument
130 …ALOGI("%s %lu %li %li", "glesLayer_eglInitialize called with parameters:", (unsigned long)dpy, maj… in glesLayer_eglInitialize()
140 return next(dpy, major, minor); in glesLayer_eglInitialize()
143 EGLAPI EGLBoolean EGLAPIENTRY glesLayer_eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list,… in glesLayer_eglChooseConfig() argument
156 return next(dpy, attrib_list, configs, config_size, num_config); in glesLayer_eglChooseConfig()
159 EGLAPI EGLBoolean EGLAPIENTRY glesLayer_eglSwapBuffersWithDamageKHR (EGLDisplay dpy, EGLSurface sur… in glesLayer_eglSwapBuffersWithDamageKHR() argument
172 return next(dpy, surface, rects, n_rects); in glesLayer_eglSwapBuffersWithDamageKHR()