jni-android-sys 0.0.10

Autogenerated glue code for access Android JVM APIs from Rust
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


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

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

        /// [glQueryMatrixxOES](https://developer.android.com/reference/android/opengl/GLES10Ext.html#glQueryMatrixxOES(int%5B%5D,%20int,%20int%5B%5D,%20int))
        pub fn glQueryMatrixxOES_int_array_int_int_array_int<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env __jni_bindgen::IntArray>>, arg1: i32, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env __jni_bindgen::IntArray>>, arg3: i32) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/opengl/GLES10Ext", java.flags == PUBLIC | STATIC | NATIVE, .name == "glQueryMatrixxOES", .descriptor == "([II[II)I"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1), __jni_bindgen::AsJValue::as_jvalue(&arg2.into()), __jni_bindgen::AsJValue::as_jvalue(&arg3)];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/opengl/GLES10Ext\0", "glQueryMatrixxOES\0", "([II[II)I\0");
                __jni_env.call_static_int_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [glQueryMatrixxOES](https://developer.android.com/reference/android/opengl/GLES10Ext.html#glQueryMatrixxOES(java.nio.IntBuffer,%20java.nio.IntBuffer))
        ///
        /// Required features: "java-nio-IntBuffer"
        #[cfg(any(feature = "all", all(feature = "java-nio-IntBuffer")))]
        pub fn glQueryMatrixxOES_IntBuffer_IntBuffer<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::nio::IntBuffer>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::nio::IntBuffer>>) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/opengl/GLES10Ext", java.flags == PUBLIC | STATIC | NATIVE, .name == "glQueryMatrixxOES", .descriptor == "(Ljava/nio/IntBuffer;Ljava/nio/IntBuffer;)I"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("android/opengl/GLES10Ext\0", "glQueryMatrixxOES\0", "(Ljava/nio/IntBuffer;Ljava/nio/IntBuffer;)I\0");
                __jni_env.call_static_int_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }
    }
}