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
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "javax-microedition-khronos-opengles-GL10Ext"))]
__jni_bindgen! {
    /// public interface [GL10Ext](https://developer.android.com/reference/javax/microedition/khronos/opengles/GL10Ext.html)
    ///
    /// Required feature: "javax-microedition-khronos-opengles-GL10Ext"
    public interface GL10Ext ("javax/microedition/khronos/opengles/GL10Ext") extends crate::java::lang::Object, implements crate::javax::microedition::khronos::opengles::GL {

        /// [glQueryMatrixxOES](https://developer.android.com/reference/javax/microedition/khronos/opengles/GL10Ext.html#glQueryMatrixxOES(int%5B%5D,%20int,%20int%5B%5D,%20int))
        pub fn glQueryMatrixxOES_int_array_int_int_array_int<'env>(&'env self, 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 == "javax/microedition/khronos/opengles/GL10Ext", java.flags == PUBLIC | ABSTRACT, .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_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("javax/microedition/khronos/opengles/GL10Ext\0", "glQueryMatrixxOES\0", "([II[II)I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [glQueryMatrixxOES](https://developer.android.com/reference/javax/microedition/khronos/opengles/GL10Ext.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>(&'env self, 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 == "javax/microedition/khronos/opengles/GL10Ext", java.flags == PUBLIC | ABSTRACT, .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_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("javax/microedition/khronos/opengles/GL10Ext\0", "glQueryMatrixxOES\0", "(Ljava/nio/IntBuffer;Ljava/nio/IntBuffer;)I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }
    }
}