You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
src/api-impl: fix up code style, mainly for code imported from AOSP
used the following (plus manual edits):
`clang-format --style="{BasedOnStyle: LLVM, IndentWidth: 8, UseTab: Always, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: true, ColumnLimit: 0}`
This commit is contained in:
@@ -18,4 +18,3 @@ package javax.microedition.khronos.egl;
|
||||
|
||||
public interface EGL {
|
||||
}
|
||||
|
||||
|
||||
@@ -19,106 +19,108 @@ package javax.microedition.khronos.egl;
|
||||
import java.lang.String;
|
||||
|
||||
public interface EGL10 extends EGL {
|
||||
int EGL_SUCCESS = 0x3000;
|
||||
int EGL_NOT_INITIALIZED = 0x3001;
|
||||
int EGL_BAD_ACCESS = 0x3002;
|
||||
int EGL_BAD_ALLOC = 0x3003;
|
||||
int EGL_BAD_ATTRIBUTE = 0x3004;
|
||||
int EGL_BAD_CONFIG = 0x3005;
|
||||
int EGL_BAD_CONTEXT = 0x3006;
|
||||
int EGL_BAD_CURRENT_SURFACE = 0x3007;
|
||||
int EGL_BAD_DISPLAY = 0x3008;
|
||||
int EGL_BAD_MATCH = 0x3009;
|
||||
int EGL_BAD_NATIVE_PIXMAP = 0x300A;
|
||||
int EGL_BAD_NATIVE_WINDOW = 0x300B;
|
||||
int EGL_BAD_PARAMETER = 0x300C;
|
||||
int EGL_BAD_SURFACE = 0x300D;
|
||||
int EGL_BUFFER_SIZE = 0x3020;
|
||||
int EGL_ALPHA_SIZE = 0x3021;
|
||||
int EGL_BLUE_SIZE = 0x3022;
|
||||
int EGL_GREEN_SIZE = 0x3023;
|
||||
int EGL_RED_SIZE = 0x3024;
|
||||
int EGL_DEPTH_SIZE = 0x3025;
|
||||
int EGL_STENCIL_SIZE = 0x3026;
|
||||
int EGL_CONFIG_CAVEAT = 0x3027;
|
||||
int EGL_CONFIG_ID = 0x3028;
|
||||
int EGL_LEVEL = 0x3029;
|
||||
int EGL_MAX_PBUFFER_HEIGHT = 0x302A;
|
||||
int EGL_MAX_PBUFFER_PIXELS = 0x302B;
|
||||
int EGL_MAX_PBUFFER_WIDTH = 0x302C;
|
||||
int EGL_NATIVE_RENDERABLE = 0x302D;
|
||||
int EGL_NATIVE_VISUAL_ID = 0x302E;
|
||||
int EGL_NATIVE_VISUAL_TYPE = 0x302F;
|
||||
int EGL_SAMPLES = 0x3031;
|
||||
int EGL_SAMPLE_BUFFERS = 0x3032;
|
||||
int EGL_SURFACE_TYPE = 0x3033;
|
||||
int EGL_TRANSPARENT_TYPE = 0x3034;
|
||||
int EGL_TRANSPARENT_BLUE_VALUE = 0x3035;
|
||||
int EGL_TRANSPARENT_GREEN_VALUE = 0x3036;
|
||||
int EGL_TRANSPARENT_RED_VALUE = 0x3037;
|
||||
int EGL_NONE = 0x3038;
|
||||
int EGL_LUMINANCE_SIZE = 0x303D;
|
||||
int EGL_ALPHA_MASK_SIZE = 0x303E;
|
||||
int EGL_COLOR_BUFFER_TYPE = 0x303F;
|
||||
int EGL_RENDERABLE_TYPE = 0x3040;
|
||||
int EGL_SLOW_CONFIG = 0x3050;
|
||||
int EGL_NON_CONFORMANT_CONFIG = 0x3051;
|
||||
int EGL_TRANSPARENT_RGB = 0x3052;
|
||||
int EGL_RGB_BUFFER = 0x308E;
|
||||
int EGL_LUMINANCE_BUFFER = 0x308F;
|
||||
int EGL_VENDOR = 0x3053;
|
||||
int EGL_VERSION = 0x3054;
|
||||
int EGL_EXTENSIONS = 0x3055;
|
||||
int EGL_HEIGHT = 0x3056;
|
||||
int EGL_WIDTH = 0x3057;
|
||||
int EGL_LARGEST_PBUFFER = 0x3058;
|
||||
int EGL_RENDER_BUFFER = 0x3086;
|
||||
int EGL_COLORSPACE = 0x3087;
|
||||
int EGL_ALPHA_FORMAT = 0x3088;
|
||||
int EGL_HORIZONTAL_RESOLUTION = 0x3090;
|
||||
int EGL_VERTICAL_RESOLUTION = 0x3091;
|
||||
int EGL_PIXEL_ASPECT_RATIO = 0x3092;
|
||||
int EGL_CONTEXT_CLIENT_VERSION = 0x3098;
|
||||
int EGL_SINGLE_BUFFER = 0x3085;
|
||||
int EGL_CORE_NATIVE_ENGINE = 0x305B;
|
||||
int EGL_DRAW = 0x3059;
|
||||
int EGL_READ = 0x305A;
|
||||
int EGL_SUCCESS = 0x3000;
|
||||
int EGL_NOT_INITIALIZED = 0x3001;
|
||||
int EGL_BAD_ACCESS = 0x3002;
|
||||
int EGL_BAD_ALLOC = 0x3003;
|
||||
int EGL_BAD_ATTRIBUTE = 0x3004;
|
||||
int EGL_BAD_CONFIG = 0x3005;
|
||||
int EGL_BAD_CONTEXT = 0x3006;
|
||||
int EGL_BAD_CURRENT_SURFACE = 0x3007;
|
||||
int EGL_BAD_DISPLAY = 0x3008;
|
||||
int EGL_BAD_MATCH = 0x3009;
|
||||
int EGL_BAD_NATIVE_PIXMAP = 0x300A;
|
||||
int EGL_BAD_NATIVE_WINDOW = 0x300B;
|
||||
int EGL_BAD_PARAMETER = 0x300C;
|
||||
int EGL_BAD_SURFACE = 0x300D;
|
||||
int EGL_BUFFER_SIZE = 0x3020;
|
||||
int EGL_ALPHA_SIZE = 0x3021;
|
||||
int EGL_BLUE_SIZE = 0x3022;
|
||||
int EGL_GREEN_SIZE = 0x3023;
|
||||
int EGL_RED_SIZE = 0x3024;
|
||||
int EGL_DEPTH_SIZE = 0x3025;
|
||||
int EGL_STENCIL_SIZE = 0x3026;
|
||||
int EGL_CONFIG_CAVEAT = 0x3027;
|
||||
int EGL_CONFIG_ID = 0x3028;
|
||||
int EGL_LEVEL = 0x3029;
|
||||
int EGL_MAX_PBUFFER_HEIGHT = 0x302A;
|
||||
int EGL_MAX_PBUFFER_PIXELS = 0x302B;
|
||||
int EGL_MAX_PBUFFER_WIDTH = 0x302C;
|
||||
int EGL_NATIVE_RENDERABLE = 0x302D;
|
||||
int EGL_NATIVE_VISUAL_ID = 0x302E;
|
||||
int EGL_NATIVE_VISUAL_TYPE = 0x302F;
|
||||
int EGL_SAMPLES = 0x3031;
|
||||
int EGL_SAMPLE_BUFFERS = 0x3032;
|
||||
int EGL_SURFACE_TYPE = 0x3033;
|
||||
int EGL_TRANSPARENT_TYPE = 0x3034;
|
||||
int EGL_TRANSPARENT_BLUE_VALUE = 0x3035;
|
||||
int EGL_TRANSPARENT_GREEN_VALUE = 0x3036;
|
||||
int EGL_TRANSPARENT_RED_VALUE = 0x3037;
|
||||
int EGL_NONE = 0x3038;
|
||||
int EGL_LUMINANCE_SIZE = 0x303D;
|
||||
int EGL_ALPHA_MASK_SIZE = 0x303E;
|
||||
int EGL_COLOR_BUFFER_TYPE = 0x303F;
|
||||
int EGL_RENDERABLE_TYPE = 0x3040;
|
||||
int EGL_SLOW_CONFIG = 0x3050;
|
||||
int EGL_NON_CONFORMANT_CONFIG = 0x3051;
|
||||
int EGL_TRANSPARENT_RGB = 0x3052;
|
||||
int EGL_RGB_BUFFER = 0x308E;
|
||||
int EGL_LUMINANCE_BUFFER = 0x308F;
|
||||
int EGL_VENDOR = 0x3053;
|
||||
int EGL_VERSION = 0x3054;
|
||||
int EGL_EXTENSIONS = 0x3055;
|
||||
int EGL_HEIGHT = 0x3056;
|
||||
int EGL_WIDTH = 0x3057;
|
||||
int EGL_LARGEST_PBUFFER = 0x3058;
|
||||
int EGL_RENDER_BUFFER = 0x3086;
|
||||
int EGL_COLORSPACE = 0x3087;
|
||||
int EGL_ALPHA_FORMAT = 0x3088;
|
||||
int EGL_HORIZONTAL_RESOLUTION = 0x3090;
|
||||
int EGL_VERTICAL_RESOLUTION = 0x3091;
|
||||
int EGL_PIXEL_ASPECT_RATIO = 0x3092;
|
||||
int EGL_CONTEXT_CLIENT_VERSION = 0x3098;
|
||||
int EGL_SINGLE_BUFFER = 0x3085;
|
||||
int EGL_CORE_NATIVE_ENGINE = 0x305B;
|
||||
int EGL_DRAW = 0x3059;
|
||||
int EGL_READ = 0x305A;
|
||||
|
||||
int EGL_DONT_CARE = -1;
|
||||
int EGL_DONT_CARE = -1;
|
||||
|
||||
int EGL_PBUFFER_BIT = 0x01;
|
||||
int EGL_PIXMAP_BIT = 0x02;
|
||||
int EGL_WINDOW_BIT = 0x04;
|
||||
int EGL_PBUFFER_BIT = 0x01;
|
||||
int EGL_PIXMAP_BIT = 0x02;
|
||||
int EGL_WINDOW_BIT = 0x04;
|
||||
|
||||
Object EGL_DEFAULT_DISPLAY = null;
|
||||
EGLDisplay EGL_NO_DISPLAY = null;//new com.google.android.gles_jni.EGLDisplayImpl(0);
|
||||
EGLContext EGL_NO_CONTEXT = null;//new com.google.android.gles_jni.EGLContextImpl(0);
|
||||
EGLSurface EGL_NO_SURFACE = null;//new com.google.android.gles_jni.EGLSurfaceImpl(0);
|
||||
|
||||
boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config);
|
||||
boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface, Object native_pixmap);
|
||||
EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list);
|
||||
EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list);
|
||||
EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list);
|
||||
EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list);
|
||||
boolean eglDestroyContext(EGLDisplay display, EGLContext context);
|
||||
boolean eglDestroySurface(EGLDisplay display, EGLSurface surface);
|
||||
boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value);
|
||||
boolean eglGetConfigs(EGLDisplay display, EGLConfig[] configs, int config_size, int[] num_config);
|
||||
EGLContext eglGetCurrentContext();
|
||||
EGLDisplay eglGetCurrentDisplay();
|
||||
EGLSurface eglGetCurrentSurface(int readdraw);
|
||||
EGLDisplay eglGetDisplay(Object native_display);
|
||||
int eglGetError();
|
||||
boolean eglInitialize(EGLDisplay display, int[] major_minor);
|
||||
boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context);
|
||||
boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value);
|
||||
String eglQueryString(EGLDisplay display, int name);
|
||||
boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value);
|
||||
/** @hide **/
|
||||
boolean eglReleaseThread();
|
||||
boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface);
|
||||
boolean eglTerminate(EGLDisplay display);
|
||||
boolean eglWaitGL();
|
||||
boolean eglWaitNative(int engine, Object bindTarget);
|
||||
Object EGL_DEFAULT_DISPLAY = null;
|
||||
EGLDisplay EGL_NO_DISPLAY = null; // new com.google.android.gles_jni.EGLDisplayImpl(0);
|
||||
EGLContext EGL_NO_CONTEXT = null; // new com.google.android.gles_jni.EGLContextImpl(0);
|
||||
EGLSurface EGL_NO_SURFACE = null; // new com.google.android.gles_jni.EGLSurfaceImpl(0);
|
||||
|
||||
boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config);
|
||||
boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface, Object native_pixmap);
|
||||
EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list);
|
||||
EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list);
|
||||
EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list);
|
||||
EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list);
|
||||
boolean eglDestroyContext(EGLDisplay display, EGLContext context);
|
||||
boolean eglDestroySurface(EGLDisplay display, EGLSurface surface);
|
||||
boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value);
|
||||
boolean eglGetConfigs(EGLDisplay display, EGLConfig[] configs, int config_size, int[] num_config);
|
||||
EGLContext eglGetCurrentContext();
|
||||
EGLDisplay eglGetCurrentDisplay();
|
||||
EGLSurface eglGetCurrentSurface(int readdraw);
|
||||
EGLDisplay eglGetDisplay(Object native_display);
|
||||
int eglGetError();
|
||||
boolean eglInitialize(EGLDisplay display, int[] major_minor);
|
||||
boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context);
|
||||
boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value);
|
||||
String eglQueryString(EGLDisplay display, int name);
|
||||
boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value);
|
||||
/**
|
||||
* @hide *
|
||||
*/
|
||||
boolean eglReleaseThread();
|
||||
boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface);
|
||||
boolean eglTerminate(EGLDisplay display);
|
||||
boolean eglWaitGL();
|
||||
boolean eglWaitNative(int engine, Object bindTarget);
|
||||
}
|
||||
|
||||
@@ -17,5 +17,5 @@
|
||||
package javax.microedition.khronos.egl;
|
||||
|
||||
public interface EGL11 extends EGL10 {
|
||||
int EGL_CONTEXT_LOST = 0x300E;
|
||||
int EGL_CONTEXT_LOST = 0x300E;
|
||||
}
|
||||
|
||||
@@ -2,8 +2,7 @@ package javax.microedition.khronos.egl;
|
||||
|
||||
import javax.microedition.khronos.opengles.GL;
|
||||
|
||||
public class EGLContext
|
||||
{
|
||||
public class EGLContext {
|
||||
private static final EGL EGL_INSTANCE = new com.google.android.gles_jni.EGLImpl();
|
||||
private static final GL GL_INSTANCE = new com.google.android.gles_jni.GLImpl(); // FIXME - not all GLs are created equal
|
||||
public long native_egl_context = 0;
|
||||
|
||||
@@ -16,6 +16,5 @@
|
||||
|
||||
package javax.microedition.khronos.egl;
|
||||
|
||||
public abstract class EGLSurface
|
||||
{
|
||||
public abstract class EGLSurface {
|
||||
}
|
||||
|
||||
@@ -2,16 +2,16 @@
|
||||
**
|
||||
** Copyright 2006, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
|
||||
@@ -19,4 +19,3 @@ package javax.microedition.khronos.opengles;
|
||||
|
||||
public interface GL {
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,16 +2,16 @@
|
||||
**
|
||||
** Copyright 2007, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
|
||||
@@ -21,16 +21,13 @@ package javax.microedition.khronos.opengles;
|
||||
|
||||
public interface GL10Ext extends GL {
|
||||
|
||||
int glQueryMatrixxOES(
|
||||
int[] mantissa,
|
||||
int mantissaOffset,
|
||||
int[] exponent,
|
||||
int exponentOffset
|
||||
);
|
||||
|
||||
int glQueryMatrixxOES(
|
||||
java.nio.IntBuffer mantissa,
|
||||
java.nio.IntBuffer exponent
|
||||
);
|
||||
int glQueryMatrixxOES(
|
||||
int[] mantissa,
|
||||
int mantissaOffset,
|
||||
int[] exponent,
|
||||
int exponentOffset);
|
||||
|
||||
int glQueryMatrixxOES(
|
||||
java.nio.IntBuffer mantissa,
|
||||
java.nio.IntBuffer exponent);
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,16 +2,16 @@
|
||||
**
|
||||
** Copyright 2007, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
|
||||
@@ -20,134 +20,113 @@
|
||||
package javax.microedition.khronos.opengles;
|
||||
|
||||
public interface GL11Ext extends GL {
|
||||
int GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES = 0x8B9E;
|
||||
int GL_MATRIX_INDEX_ARRAY_OES = 0x8844;
|
||||
int GL_MATRIX_INDEX_ARRAY_POINTER_OES = 0x8849;
|
||||
int GL_MATRIX_INDEX_ARRAY_SIZE_OES = 0x8846;
|
||||
int GL_MATRIX_INDEX_ARRAY_STRIDE_OES = 0x8848;
|
||||
int GL_MATRIX_INDEX_ARRAY_TYPE_OES = 0x8847;
|
||||
int GL_MATRIX_PALETTE_OES = 0x8840;
|
||||
int GL_MAX_PALETTE_MATRICES_OES = 0x8842;
|
||||
int GL_MAX_VERTEX_UNITS_OES = 0x86A4;
|
||||
int GL_TEXTURE_CROP_RECT_OES = 0x8B9D;
|
||||
int GL_WEIGHT_ARRAY_BUFFER_BINDING_OES = 0x889E;
|
||||
int GL_WEIGHT_ARRAY_OES = 0x86AD;
|
||||
int GL_WEIGHT_ARRAY_POINTER_OES = 0x86AC;
|
||||
int GL_WEIGHT_ARRAY_SIZE_OES = 0x86AB;
|
||||
int GL_WEIGHT_ARRAY_STRIDE_OES = 0x86AA;
|
||||
int GL_WEIGHT_ARRAY_TYPE_OES = 0x86A9;
|
||||
int GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES = 0x8B9E;
|
||||
int GL_MATRIX_INDEX_ARRAY_OES = 0x8844;
|
||||
int GL_MATRIX_INDEX_ARRAY_POINTER_OES = 0x8849;
|
||||
int GL_MATRIX_INDEX_ARRAY_SIZE_OES = 0x8846;
|
||||
int GL_MATRIX_INDEX_ARRAY_STRIDE_OES = 0x8848;
|
||||
int GL_MATRIX_INDEX_ARRAY_TYPE_OES = 0x8847;
|
||||
int GL_MATRIX_PALETTE_OES = 0x8840;
|
||||
int GL_MAX_PALETTE_MATRICES_OES = 0x8842;
|
||||
int GL_MAX_VERTEX_UNITS_OES = 0x86A4;
|
||||
int GL_TEXTURE_CROP_RECT_OES = 0x8B9D;
|
||||
int GL_WEIGHT_ARRAY_BUFFER_BINDING_OES = 0x889E;
|
||||
int GL_WEIGHT_ARRAY_OES = 0x86AD;
|
||||
int GL_WEIGHT_ARRAY_POINTER_OES = 0x86AC;
|
||||
int GL_WEIGHT_ARRAY_SIZE_OES = 0x86AB;
|
||||
int GL_WEIGHT_ARRAY_STRIDE_OES = 0x86AA;
|
||||
int GL_WEIGHT_ARRAY_TYPE_OES = 0x86A9;
|
||||
|
||||
void glTexParameterfv(int target, int pname, float[] param, int offset);
|
||||
void glTexParameterfv(int target, int pname, float[] param, int offset);
|
||||
|
||||
void glCurrentPaletteMatrixOES(
|
||||
int matrixpaletteindex
|
||||
);
|
||||
void glCurrentPaletteMatrixOES(
|
||||
int matrixpaletteindex);
|
||||
|
||||
void glDrawTexfOES(
|
||||
float x,
|
||||
float y,
|
||||
float z,
|
||||
float width,
|
||||
float height
|
||||
);
|
||||
void glDrawTexfOES(
|
||||
float x,
|
||||
float y,
|
||||
float z,
|
||||
float width,
|
||||
float height);
|
||||
|
||||
void glDrawTexfvOES(
|
||||
float[] coords,
|
||||
int offset
|
||||
);
|
||||
void glDrawTexfvOES(
|
||||
float[] coords,
|
||||
int offset);
|
||||
|
||||
void glDrawTexfvOES(
|
||||
java.nio.FloatBuffer coords
|
||||
);
|
||||
void glDrawTexfvOES(
|
||||
java.nio.FloatBuffer coords);
|
||||
|
||||
void glDrawTexiOES(
|
||||
int x,
|
||||
int y,
|
||||
int z,
|
||||
int width,
|
||||
int height
|
||||
);
|
||||
void glDrawTexiOES(
|
||||
int x,
|
||||
int y,
|
||||
int z,
|
||||
int width,
|
||||
int height);
|
||||
|
||||
void glDrawTexivOES(
|
||||
int[] coords,
|
||||
int offset
|
||||
);
|
||||
void glDrawTexivOES(
|
||||
int[] coords,
|
||||
int offset);
|
||||
|
||||
void glDrawTexivOES(
|
||||
java.nio.IntBuffer coords
|
||||
);
|
||||
void glDrawTexivOES(
|
||||
java.nio.IntBuffer coords);
|
||||
|
||||
void glDrawTexsOES(
|
||||
short x,
|
||||
short y,
|
||||
short z,
|
||||
short width,
|
||||
short height
|
||||
);
|
||||
void glDrawTexsOES(
|
||||
short x,
|
||||
short y,
|
||||
short z,
|
||||
short width,
|
||||
short height);
|
||||
|
||||
void glDrawTexsvOES(
|
||||
short[] coords,
|
||||
int offset
|
||||
);
|
||||
void glDrawTexsvOES(
|
||||
short[] coords,
|
||||
int offset);
|
||||
|
||||
void glDrawTexsvOES(
|
||||
java.nio.ShortBuffer coords
|
||||
);
|
||||
void glDrawTexsvOES(
|
||||
java.nio.ShortBuffer coords);
|
||||
|
||||
void glDrawTexxOES(
|
||||
int x,
|
||||
int y,
|
||||
int z,
|
||||
int width,
|
||||
int height
|
||||
);
|
||||
void glDrawTexxOES(
|
||||
int x,
|
||||
int y,
|
||||
int z,
|
||||
int width,
|
||||
int height);
|
||||
|
||||
void glDrawTexxvOES(
|
||||
int[] coords,
|
||||
int offset
|
||||
);
|
||||
void glDrawTexxvOES(
|
||||
int[] coords,
|
||||
int offset);
|
||||
|
||||
void glDrawTexxvOES(
|
||||
java.nio.IntBuffer coords
|
||||
);
|
||||
void glDrawTexxvOES(
|
||||
java.nio.IntBuffer coords);
|
||||
|
||||
void glEnable(
|
||||
int cap
|
||||
);
|
||||
void glEnable(
|
||||
int cap);
|
||||
|
||||
void glEnableClientState(
|
||||
int array
|
||||
);
|
||||
void glEnableClientState(
|
||||
int array);
|
||||
|
||||
void glLoadPaletteFromModelViewMatrixOES(
|
||||
);
|
||||
void glLoadPaletteFromModelViewMatrixOES();
|
||||
|
||||
void glMatrixIndexPointerOES(
|
||||
int size,
|
||||
int type,
|
||||
int stride,
|
||||
java.nio.Buffer pointer
|
||||
);
|
||||
void glMatrixIndexPointerOES(
|
||||
int size,
|
||||
int type,
|
||||
int stride,
|
||||
java.nio.Buffer pointer);
|
||||
|
||||
void glMatrixIndexPointerOES(
|
||||
int size,
|
||||
int type,
|
||||
int stride,
|
||||
int offset
|
||||
);
|
||||
void glMatrixIndexPointerOES(
|
||||
int size,
|
||||
int type,
|
||||
int stride,
|
||||
int offset);
|
||||
|
||||
void glWeightPointerOES(
|
||||
int size,
|
||||
int type,
|
||||
int stride,
|
||||
java.nio.Buffer pointer
|
||||
);
|
||||
|
||||
void glWeightPointerOES(
|
||||
int size,
|
||||
int type,
|
||||
int stride,
|
||||
int offset
|
||||
);
|
||||
void glWeightPointerOES(
|
||||
int size,
|
||||
int type,
|
||||
int stride,
|
||||
java.nio.Buffer pointer);
|
||||
|
||||
void glWeightPointerOES(
|
||||
int size,
|
||||
int type,
|
||||
int stride,
|
||||
int offset);
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user