1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "android-opengl-EGLExt"))]
__jni_bindgen! {
    /// public class [EGLExt](https://developer.android.com/reference/android/opengl/EGLExt.html)
    ///
    /// Required feature: "android-opengl-EGLExt"
    public class EGLExt ("android/opengl/EGLExt") extends crate::java::lang::Object {

        /// [EGLExt](https://developer.android.com/reference/android/opengl/EGLExt.html#EGLExt())
        pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::opengl::EGLExt>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/opengl/EGLExt", java.flags == PUBLIC, .name == "<init>", .descriptor == "()V"
            unsafe {
                let __jni_args = [];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/opengl/EGLExt\0", "<init>\0", "()V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [eglPresentationTimeANDROID](https://developer.android.com/reference/android/opengl/EGLExt.html#eglPresentationTimeANDROID(android.opengl.EGLDisplay,%20android.opengl.EGLSurface,%20long))
        ///
        /// Required features: "android-opengl-EGLDisplay", "android-opengl-EGLSurface"
        #[cfg(any(feature = "all", all(feature = "android-opengl-EGLDisplay", feature = "android-opengl-EGLSurface")))]
        pub fn eglPresentationTimeANDROID<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::opengl::EGLDisplay>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::android::opengl::EGLSurface>>, arg2: i64) -> __jni_bindgen::std::result::Result<bool, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/opengl/EGLExt", java.flags == PUBLIC | STATIC | NATIVE, .name == "eglPresentationTimeANDROID", .descriptor == "(Landroid/opengl/EGLDisplay;Landroid/opengl/EGLSurface;J)Z"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2)];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/opengl/EGLExt\0", "eglPresentationTimeANDROID\0", "(Landroid/opengl/EGLDisplay;Landroid/opengl/EGLSurface;J)Z\0");
                __jni_env.call_static_boolean_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// public static final [EGL_CONTEXT_FLAGS_KHR](https://developer.android.com/reference/android/opengl/EGLExt.html#EGL_CONTEXT_FLAGS_KHR)
        pub const EGL_CONTEXT_FLAGS_KHR : i32 = 12540;

        /// public static final [EGL_CONTEXT_MAJOR_VERSION_KHR](https://developer.android.com/reference/android/opengl/EGLExt.html#EGL_CONTEXT_MAJOR_VERSION_KHR)
        pub const EGL_CONTEXT_MAJOR_VERSION_KHR : i32 = 12440;

        /// public static final [EGL_CONTEXT_MINOR_VERSION_KHR](https://developer.android.com/reference/android/opengl/EGLExt.html#EGL_CONTEXT_MINOR_VERSION_KHR)
        pub const EGL_CONTEXT_MINOR_VERSION_KHR : i32 = 12539;

        /// public static final [EGL_OPENGL_ES3_BIT_KHR](https://developer.android.com/reference/android/opengl/EGLExt.html#EGL_OPENGL_ES3_BIT_KHR)
        pub const EGL_OPENGL_ES3_BIT_KHR : i32 = 64;

        /// public static final [EGL_RECORDABLE_ANDROID](https://developer.android.com/reference/android/opengl/EGLExt.html#EGL_RECORDABLE_ANDROID)
        pub const EGL_RECORDABLE_ANDROID : i32 = 12610;
    }
}