Home
last modified time | relevance | path

Searched refs:EGLSync (Results 1 – 25 of 27) sorted by relevance

12

/frameworks/native/opengl/tools/glgen/static/egl/
DEGLSync.java24 public class EGLSync extends EGLObjectHandle { class
25 private EGLSync(long handle) { in EGLSync() method in EGLSync
32 if (!(o instanceof EGLSync)) return false; in equals()
34 EGLSync that = (EGLSync) o; in equals()
/frameworks/base/opengl/java/android/opengl/
DEGLSync.java24 public class EGLSync extends EGLObjectHandle { class
25 private EGLSync(long handle) { in EGLSync() method in EGLSync
32 if (!(o instanceof EGLSync)) return false; in equals()
34 EGLSync that = (EGLSync) o; in equals()
DEGL15.java70 public static final EGLSync EGL_NO_SYNC = null;
81 public static native EGLSync eglCreateSync( in eglCreateSync()
95 EGLSync sync, in eglGetSyncAttrib()
105 EGLSync sync in eglDestroySync()
112 EGLSync sync, in eglClientWaitSync()
150 EGLSync sync, in eglWaitSync()
DEGLExt.java67 @NonNull EGLSync sync) { in eglDupNativeFenceFDANDROID()
77 private static native int eglDupNativeFenceFDANDROIDImpl(EGLDisplay display, EGLSync sync); in eglDupNativeFenceFDANDROIDImpl()
/frameworks/native/opengl/tools/glgen/specs/egl/
DEGL15.spec1 EGLSync eglCreateSync ( EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list )
3 // EGLBoolean eglGetSyncAttrib ( EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value )
4 EGLBoolean eglDestroySync ( EGLDisplay dpy, EGLSync sync )
5 EGLint eglClientWaitSync ( EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout )
/frameworks/native/opengl/tools/glgen/stubs/egl/
DeglCreateSync.cpp8 EGLSync _returnValue = (EGLSync) 0; in android_eglCreateSync()
58 EGLSync sync_native = (EGLSync) fromEGLHandle(_env, eglsyncGetHandleID, sync); in android_eglGetSyncAttrib()
81 (EGLSync)sync_native, in android_eglGetSyncAttrib()
DeglCreateSync.java3 public static native EGLSync eglCreateSync( in eglCreateSync()
17 EGLSync sync, in eglGetSyncAttrib()
DeglCreateSync.nativeReg1 {"eglCreateSync", "(Landroid/opengl/EGLDisplay;I[JI)Landroid/opengl/EGLSync;", (void *) android_egl…
2 {"eglGetSyncAttrib", "(Landroid/opengl/EGLDisplay;Landroid/opengl/EGLSync;I[JI)Z", (void *) android…
DEGLExtHeader.java-if50 * Retrieves the SyncFence for an EGLSync created with EGL_SYNC_NATIVE_FENCE_ANDROID
55 * @param sync The EGLSync to fetch the SyncFence from
67 @NonNull EGLSync sync) {
77 private static native int eglDupNativeFenceFDANDROIDImpl(EGLDisplay display, EGLSync sync);
DEGLExtcHeader.cpp79 EGLSync sync_native = (EGLSync)fromEGLHandle(env, eglsyncGetHandleID, sync); in android_eglDupNativeFenceFDANDROID()
DEGL15Header.java-if70 public static final EGLSync EGL_NO_SYNC = null;
/frameworks/base/core/jni/
Dandroid_opengl_EGL15.cpp203 EGLSync _returnValue = (EGLSync) 0; in android_eglCreateSync()
253 EGLSync sync_native = (EGLSync) fromEGLHandle(_env, eglsyncGetHandleID, sync); in android_eglGetSyncAttrib()
276 (EGLSync)sync_native, in android_eglGetSyncAttrib()
303 EGLSync sync_native = (EGLSync) fromEGLHandle(_env, eglsyncGetHandleID, sync); in android_eglDestroySync()
307 (EGLSync)sync_native in android_eglDestroySync()
318 EGLSync sync_native = (EGLSync) fromEGLHandle(_env, eglsyncGetHandleID, sync); in android_eglClientWaitSync()
322 (EGLSync)sync_native, in android_eglClientWaitSync()
459 EGLSync sync_native = (EGLSync) fromEGLHandle(_env, eglsyncGetHandleID, sync); in android_eglWaitSync()
463 (EGLSync)sync_native, in android_eglWaitSync()
Dandroid_opengl_EGLExt.cpp79 EGLSync sync_native = (EGLSync)fromEGLHandle(env, eglsyncGetHandleID, sync); in android_eglDupNativeFenceFDANDROID()
/frameworks/native/opengl/include/EGL/
Degl.h240 typedef void *EGLSync; typedef
269 #define EGL_NO_SYNC EGL_CAST(EGLSync,0)
287 EGLAPI EGLSync EGLAPIENTRY eglCreateSync (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_lis…
288 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySync (EGLDisplay dpy, EGLSync sync);
289 EGLAPI EGLint EGLAPIENTRY eglClientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime ti…
290 EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttrib (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGL…
296 EGLAPI EGLBoolean EGLAPIENTRY eglWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags);
Deglext.h625 typedef EGLBoolean (EGLAPIENTRYP PFNEGLCLIENTSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, cons…
627 EGLAPI EGLBoolean EGLAPIENTRY eglClientSignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib…
929 typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNSIGNALSYNCEXTPROC) (EGLDisplay dpy, EGLSync sync, const EG…
931 EGLAPI EGLBoolean EGLAPIENTRY eglUnsignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib *at…
/frameworks/native/opengl/libs/EGL/
Degl_entries.in54 EGL_ENTRY(EGLBoolean, eglDestroySync, EGLDisplay, EGLSync)
55 EGL_ENTRY(EGLint, eglClientWaitSync, EGLDisplay, EGLSync, EGLint, EGLTimeKHR)
56 EGL_ENTRY(EGLBoolean, eglGetSyncAttrib, EGLDisplay, EGLSync, EGLint, EGLAttrib *)
57 EGL_ENTRY(EGLBoolean, eglWaitSync, EGLDisplay, EGLSync, EGLint)
DeglApi.cpp443 EGLint eglClientWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTimeKHR timeout) { in eglClientWaitSync()
457 EGLBoolean eglGetSyncAttrib(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib* value) { in eglGetSyncAttrib()
567 EGLBoolean eglWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags) { in eglWaitSync()
Degl_platform_entries.cpp1749 EGLSync eglCreateSyncImpl(EGLDisplay dpy, EGLenum type, const EGLAttrib* attrib_list) { in eglCreateSyncImpl()
1827 EGLint eglClientWaitSyncImpl(EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTimeKHR timeout) { in eglClientWaitSyncImpl()
1854 typedef EGLBoolean(EGLAPIENTRYP PFNEGLGETSYNCATTRIB)(EGLDisplay dpy, EGLSync sync, EGLint attribute,
1857 EGLBoolean eglGetSyncAttribImpl(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib* value) { in eglGetSyncAttribImpl()
2061 typedef EGLBoolean(EGLAPIENTRYP PFNEGLWAITSYNC)(EGLDisplay dpy, EGLSync sync, EGLint flags);
2069 EGLBoolean eglWaitSyncImpl(EGLDisplay dpy, EGLSync sync, EGLint flags) { in eglWaitSyncImpl()
/frameworks/native/opengl/libs/
Dplatform_entries.in47 EGL_ENTRY(EGLSync, eglCreateSync, EGLDisplay, EGLenum, const EGLAttrib*)
48 EGL_ENTRY(EGLBoolean, eglDestroySync, EGLDisplay, EGLSync)
49 EGL_ENTRY(EGLint, eglClientWaitSync, EGLDisplay, EGLSync, EGLint, EGLTimeKHR)
68 EGL_ENTRY(EGLint, eglWaitSync, EGLDisplay, EGLSync, EGLint)
/frameworks/base/core/java/android/hardware/
DSyncFence.java24 import android.opengl.EGLSync;
/frameworks/native/opengl/tools/glgen/
Dgen186 for x in EGLConfig EGLContext EGLDisplay EGLObjectHandle EGLSurface EGLImage EGLSync
/frameworks/base/core/java/android/view/
DSurfaceControl.java60 import android.opengl.EGLSync;
/frameworks/base/core/api/
Dcurrent.txt29669 …method public static int eglClientWaitSync(android.opengl.EGLDisplay, android.opengl.EGLSync, int,…
29673 …method public static android.opengl.EGLSync eglCreateSync(android.opengl.EGLDisplay, int, long[], …
29675 method public static boolean eglDestroySync(android.opengl.EGLDisplay, android.opengl.EGLSync);
29677 …method public static boolean eglGetSyncAttrib(android.opengl.EGLDisplay, android.opengl.EGLSync, i…
29678 … method public static boolean eglWaitSync(android.opengl.EGLDisplay, android.opengl.EGLSync, int);
29712 field public static final android.opengl.EGLSync EGL_NO_SYNC;
29739 …ce eglDupNativeFenceFDANDROID(@NonNull android.opengl.EGLDisplay, @NonNull android.opengl.EGLSync);
29765 public class EGLSync extends android.opengl.EGLObjectHandle {
/frameworks/base/boot/
Dpreloaded-classes5846 android.opengl.EGLSync
/frameworks/base/config/
Dpreloaded-classes5850 android.opengl.EGLSync

12