Class ANDROIDNativeFenceSync
- java.lang.Object
-
- org.lwjgl.egl.ANDROIDNativeFenceSync
-
public class ANDROIDNativeFenceSync extends java.lang.Object
Native bindings to the ANDROID_native_fence_sync extension.This extension enables the creation of EGL fence sync objects that are associated with a native synchronization fence object that is referenced using a file descriptor. These EGL fence sync objects have nearly identical semantics to those defined by the KHR_fence_sync extension, except that they have an additional attribute storing the file descriptor referring to the native fence object.
This extension assumes the existence of a native fence synchronization object that behaves similarly to an EGL fence sync object. These native objects must have a signal status like that of an EGLSyncKHR object that indicates whether the fence has ever been signaled. Once signaled the native object's signal status may not change again.
Requires
EGL 1.1
andKHR_fence_sync
.
-
-
Field Summary
Fields Modifier and Type Field Description static int
EGL_NO_NATIVE_FENCE_FD_ANDROID
EGL_SYNC_NATIVE_FENCE_ANDROID
EGL_SYNC_NATIVE_FENCE_FD_ANDROID
EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
eglDupNativeFenceFDANDROID(long dpy, long sync)
-
-
-
Field Detail
-
EGL_SYNC_NATIVE_FENCE_ANDROID
public static final int EGL_SYNC_NATIVE_FENCE_ANDROID
- See Also:
- Constant Field Values
-
EGL_SYNC_NATIVE_FENCE_FD_ANDROID
public static final int EGL_SYNC_NATIVE_FENCE_FD_ANDROID
- See Also:
- Constant Field Values
-
EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID
public static final int EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID
- See Also:
- Constant Field Values
-
EGL_NO_NATIVE_FENCE_FD_ANDROID
public static final int EGL_NO_NATIVE_FENCE_FD_ANDROID
- See Also:
- Constant Field Values
-
-