11c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich/*
224ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes**
324ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes** Copyright 2009, The Android Open Source Project
424ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes**
524ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes** Licensed under the Apache License, Version 2.0 (the "License");
624ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes** you may not use this file except in compliance with the License.
724ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes** You may obtain a copy of the License at
824ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes**
924ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes**     http://www.apache.org/licenses/LICENSE-2.0
1024ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes**
1124ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes** Unless required by applicable law or agreed to in writing, software
1224ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes** distributed under the License is distributed on an "AS IS" BASIS,
1324ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1424ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes** See the License for the specific language governing permissions and
1524ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes** limitations under the License.
1624ce5fb2cc09d0a14406e7b935f8648c5720d27eElliott Hughes*/
171c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich
181c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich// This source file is automatically generated
191c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich
201c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevichpackage android.opengl;
211c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich
221c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevichpublic class GLES10Ext {
231c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich    native private static void _nativeClassInit();
241c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich    static {
251c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich	    _nativeClassInit();
261c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich    }
271c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich
281c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich    // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
291c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich
301c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich    public static native int glQueryMatrixxOES(
311c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich        int[] mantissa,
321c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich        int mantissaOffset,
331c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich        int[] exponent,
341c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich        int exponentOffset
351c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich    );
361c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich
371c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich    // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
381c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich
391c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich    public static native int glQueryMatrixxOES(
401c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich        java.nio.IntBuffer mantissa,
411c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich        java.nio.IntBuffer exponent
421c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich    );
431c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich
441c4907ee77392afb768c2f088e0dedbe4239f6fbJack Palevich}
45