diff options
author | Scott Lobdell <slobdell@google.com> | 2019-04-08 10:48:54 -0700 |
---|---|---|
committer | Scott Lobdell <slobdell@google.com> | 2019-04-08 10:48:54 -0700 |
commit | cdf051c2ca9f77d4bbf507e9366bfa3c22d177a6 (patch) | |
tree | 14183db47c2e0adf74d5075b63b6534a91ba55a6 /opengl/java/android | |
parent | 57bebe6979fc28797a103c98172938245c3849df (diff) | |
parent | d49dfb7ca3d627db4583c13d6966d4cc786c4438 (diff) |
Merge QP1A.190408.001
Change-Id: Ic5d3cf3caf3dde29d900e6f6a4ec91c14efda05c
Diffstat (limited to 'opengl/java/android')
-rw-r--r-- | opengl/java/android/opengl/EGL15.java | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/opengl/java/android/opengl/EGL15.java b/opengl/java/android/opengl/EGL15.java index bd845e7ec1a0..93acc674a4b7 100644 --- a/opengl/java/android/opengl/EGL15.java +++ b/opengl/java/android/opengl/EGL15.java @@ -85,6 +85,19 @@ public final class EGL15 { int offset ); + /** + * C function EGLBoolean eglGetSyncAttrib ( EGLDisplay dpy, EGLSync sync, EGLint attribute, + * EGLAttrib *value ) + */ + + public static native boolean eglGetSyncAttrib( + EGLDisplay dpy, + EGLSync sync, + int attribute, + long[] value, + int offset + ); + // C function EGLBoolean eglDestroySync ( EGLDisplay dpy, EGLSync sync ) public static native boolean eglDestroySync( @@ -101,16 +114,6 @@ public final class EGL15 { long timeout ); - // C function EGLBoolean eglGetSyncAttrib ( EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value ) - - public static native boolean eglGetSyncAttrib( - EGLDisplay dpy, - EGLSync sync, - int attribute, - long[] value, - int offset - ); - // C function EGLDisplay eglGetPlatformDisplay ( EGLenum platform, EGLAttrib native_display, const EGLAttrib *attrib_list ) public static native EGLDisplay eglGetPlatformDisplay( |