public static native void glBlendEquationSeparateOES()

in android/opengl/GLES11Ext.java [146:912]


    public static native void glBlendEquationSeparateOES(
        int modeRGB,
        int modeAlpha
    );

    // C function void glBlendFuncSeparateOES ( GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha )

    public static native void glBlendFuncSeparateOES(
        int srcRGB,
        int dstRGB,
        int srcAlpha,
        int dstAlpha
    );

    // C function void glBlendEquationOES ( GLenum mode )

    public static native void glBlendEquationOES(
        int mode
    );

    // C function void glDrawTexsOES ( GLshort x, GLshort y, GLshort z, GLshort width, GLshort height )

    public static native void glDrawTexsOES(
        short x,
        short y,
        short z,
        short width,
        short height
    );

    // C function void glDrawTexiOES ( GLint x, GLint y, GLint z, GLint width, GLint height )

    public static native void glDrawTexiOES(
        int x,
        int y,
        int z,
        int width,
        int height
    );

    // C function void glDrawTexxOES ( GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height )

    public static native void glDrawTexxOES(
        int x,
        int y,
        int z,
        int width,
        int height
    );

    // C function void glDrawTexsvOES ( const GLshort *coords )

    public static native void glDrawTexsvOES(
        short[] coords,
        int offset
    );

    // C function void glDrawTexsvOES ( const GLshort *coords )

    public static native void glDrawTexsvOES(
        java.nio.ShortBuffer coords
    );

    // C function void glDrawTexivOES ( const GLint *coords )

    public static native void glDrawTexivOES(
        int[] coords,
        int offset
    );

    // C function void glDrawTexivOES ( const GLint *coords )

    public static native void glDrawTexivOES(
        java.nio.IntBuffer coords
    );

    // C function void glDrawTexxvOES ( const GLfixed *coords )

    public static native void glDrawTexxvOES(
        int[] coords,
        int offset
    );

    // C function void glDrawTexxvOES ( const GLfixed *coords )

    public static native void glDrawTexxvOES(
        java.nio.IntBuffer coords
    );

    // C function void glDrawTexfOES ( GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height )

    public static native void glDrawTexfOES(
        float x,
        float y,
        float z,
        float width,
        float height
    );

    // C function void glDrawTexfvOES ( const GLfloat *coords )

    public static native void glDrawTexfvOES(
        float[] coords,
        int offset
    );

    // C function void glDrawTexfvOES ( const GLfloat *coords )

    public static native void glDrawTexfvOES(
        java.nio.FloatBuffer coords
    );

    // C function void glEGLImageTargetTexture2DOES ( GLenum target, GLeglImageOES image )

    public static native void glEGLImageTargetTexture2DOES(
        int target,
        java.nio.Buffer image
    );

    // C function void glEGLImageTargetRenderbufferStorageOES ( GLenum target, GLeglImageOES image )

    public static native void glEGLImageTargetRenderbufferStorageOES(
        int target,
        java.nio.Buffer image
    );

    // C function void glAlphaFuncxOES ( GLenum func, GLclampx ref )

    public static native void glAlphaFuncxOES(
        int func,
        int ref
    );

    // C function void glClearColorxOES ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha )

    public static native void glClearColorxOES(
        int red,
        int green,
        int blue,
        int alpha
    );

    // C function void glClearDepthxOES ( GLclampx depth )

    public static native void glClearDepthxOES(
        int depth
    );

    // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )

    public static native void glClipPlanexOES(
        int plane,
        int[] equation,
        int offset
    );

    // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )

    public static native void glClipPlanexOES(
        int plane,
        java.nio.IntBuffer equation
    );

    // C function void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )

    public static native void glColor4xOES(
        int red,
        int green,
        int blue,
        int alpha
    );

    // C function void glDepthRangexOES ( GLclampx zNear, GLclampx zFar )

    public static native void glDepthRangexOES(
        int zNear,
        int zFar
    );

    // C function void glFogxOES ( GLenum pname, GLfixed param )

    public static native void glFogxOES(
        int pname,
        int param
    );

    // C function void glFogxvOES ( GLenum pname, const GLfixed *params )

    public static native void glFogxvOES(
        int pname,
        int[] params,
        int offset
    );

    // C function void glFogxvOES ( GLenum pname, const GLfixed *params )

    public static native void glFogxvOES(
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glFrustumxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )

    public static native void glFrustumxOES(
        int left,
        int right,
        int bottom,
        int top,
        int zNear,
        int zFar
    );

    // C function void glGetClipPlanexOES ( GLenum pname, GLfixed *eqn )

    public static native void glGetClipPlanexOES(
        int pname,
        int[] eqn,
        int offset
    );

    // C function void glGetClipPlanexOES ( GLenum pname, GLfixed *eqn )

    public static native void glGetClipPlanexOES(
        int pname,
        java.nio.IntBuffer eqn
    );

    // C function void glGetFixedvOES ( GLenum pname, GLfixed *params )

    public static native void glGetFixedvOES(
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetFixedvOES ( GLenum pname, GLfixed *params )

    public static native void glGetFixedvOES(
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetLightxvOES ( GLenum light, GLenum pname, GLfixed *params )

    public static native void glGetLightxvOES(
        int light,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetLightxvOES ( GLenum light, GLenum pname, GLfixed *params )

    public static native void glGetLightxvOES(
        int light,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetMaterialxvOES ( GLenum face, GLenum pname, GLfixed *params )

    public static native void glGetMaterialxvOES(
        int face,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetMaterialxvOES ( GLenum face, GLenum pname, GLfixed *params )

    public static native void glGetMaterialxvOES(
        int face,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetTexEnvxvOES ( GLenum env, GLenum pname, GLfixed *params )

    public static native void glGetTexEnvxvOES(
        int env,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetTexEnvxvOES ( GLenum env, GLenum pname, GLfixed *params )

    public static native void glGetTexEnvxvOES(
        int env,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGetTexParameterxvOES ( GLenum target, GLenum pname, GLfixed *params )

    public static native void glGetTexParameterxvOES(
        int target,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetTexParameterxvOES ( GLenum target, GLenum pname, GLfixed *params )

    public static native void glGetTexParameterxvOES(
        int target,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glLightModelxOES ( GLenum pname, GLfixed param )

    public static native void glLightModelxOES(
        int pname,
        int param
    );

    // C function void glLightModelxvOES ( GLenum pname, const GLfixed *params )

    public static native void glLightModelxvOES(
        int pname,
        int[] params,
        int offset
    );

    // C function void glLightModelxvOES ( GLenum pname, const GLfixed *params )

    public static native void glLightModelxvOES(
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glLightxOES ( GLenum light, GLenum pname, GLfixed param )

    public static native void glLightxOES(
        int light,
        int pname,
        int param
    );

    // C function void glLightxvOES ( GLenum light, GLenum pname, const GLfixed *params )

    public static native void glLightxvOES(
        int light,
        int pname,
        int[] params,
        int offset
    );

    // C function void glLightxvOES ( GLenum light, GLenum pname, const GLfixed *params )

    public static native void glLightxvOES(
        int light,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glLineWidthxOES ( GLfixed width )

    public static native void glLineWidthxOES(
        int width
    );

    // C function void glLoadMatrixxOES ( const GLfixed *m )

    public static native void glLoadMatrixxOES(
        int[] m,
        int offset
    );

    // C function void glLoadMatrixxOES ( const GLfixed *m )

    public static native void glLoadMatrixxOES(
        java.nio.IntBuffer m
    );

    // C function void glMaterialxOES ( GLenum face, GLenum pname, GLfixed param )

    public static native void glMaterialxOES(
        int face,
        int pname,
        int param
    );

    // C function void glMaterialxvOES ( GLenum face, GLenum pname, const GLfixed *params )

    public static native void glMaterialxvOES(
        int face,
        int pname,
        int[] params,
        int offset
    );

    // C function void glMaterialxvOES ( GLenum face, GLenum pname, const GLfixed *params )

    public static native void glMaterialxvOES(
        int face,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glMultMatrixxOES ( const GLfixed *m )

    public static native void glMultMatrixxOES(
        int[] m,
        int offset
    );

    // C function void glMultMatrixxOES ( const GLfixed *m )

    public static native void glMultMatrixxOES(
        java.nio.IntBuffer m
    );

    // C function void glMultiTexCoord4xOES ( GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q )

    public static native void glMultiTexCoord4xOES(
        int target,
        int s,
        int t,
        int r,
        int q
    );

    // C function void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )

    public static native void glNormal3xOES(
        int nx,
        int ny,
        int nz
    );

    // C function void glOrthoxOES ( GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar )

    public static native void glOrthoxOES(
        int left,
        int right,
        int bottom,
        int top,
        int zNear,
        int zFar
    );

    // C function void glPointParameterxOES ( GLenum pname, GLfixed param )

    public static native void glPointParameterxOES(
        int pname,
        int param
    );

    // C function void glPointParameterxvOES ( GLenum pname, const GLfixed *params )

    public static native void glPointParameterxvOES(
        int pname,
        int[] params,
        int offset
    );

    // C function void glPointParameterxvOES ( GLenum pname, const GLfixed *params )

    public static native void glPointParameterxvOES(
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glPointSizexOES ( GLfixed size )

    public static native void glPointSizexOES(
        int size
    );

    // C function void glPolygonOffsetxOES ( GLfixed factor, GLfixed units )

    public static native void glPolygonOffsetxOES(
        int factor,
        int units
    );

    // C function void glRotatexOES ( GLfixed angle, GLfixed x, GLfixed y, GLfixed z )

    public static native void glRotatexOES(
        int angle,
        int x,
        int y,
        int z
    );

    // C function void glSampleCoveragexOES ( GLclampx value, GLboolean invert )

    public static native void glSampleCoveragexOES(
        int value,
        boolean invert
    );

    // C function void glScalexOES ( GLfixed x, GLfixed y, GLfixed z )

    public static native void glScalexOES(
        int x,
        int y,
        int z
    );

    // C function void glTexEnvxOES ( GLenum target, GLenum pname, GLfixed param )

    public static native void glTexEnvxOES(
        int target,
        int pname,
        int param
    );

    // C function void glTexEnvxvOES ( GLenum target, GLenum pname, const GLfixed *params )

    public static native void glTexEnvxvOES(
        int target,
        int pname,
        int[] params,
        int offset
    );

    // C function void glTexEnvxvOES ( GLenum target, GLenum pname, const GLfixed *params )

    public static native void glTexEnvxvOES(
        int target,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glTexParameterxOES ( GLenum target, GLenum pname, GLfixed param )

    public static native void glTexParameterxOES(
        int target,
        int pname,
        int param
    );

    // C function void glTexParameterxvOES ( GLenum target, GLenum pname, const GLfixed *params )

    public static native void glTexParameterxvOES(
        int target,
        int pname,
        int[] params,
        int offset
    );

    // C function void glTexParameterxvOES ( GLenum target, GLenum pname, const GLfixed *params )

    public static native void glTexParameterxvOES(
        int target,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glTranslatexOES ( GLfixed x, GLfixed y, GLfixed z )

    public static native void glTranslatexOES(
        int x,
        int y,
        int z
    );

    // C function GLboolean glIsRenderbufferOES ( GLuint renderbuffer )

    public static native boolean glIsRenderbufferOES(
        int renderbuffer
    );

    // C function void glBindRenderbufferOES ( GLenum target, GLuint renderbuffer )

    public static native void glBindRenderbufferOES(
        int target,
        int renderbuffer
    );

    // C function void glDeleteRenderbuffersOES ( GLsizei n, const GLuint *renderbuffers )

    public static native void glDeleteRenderbuffersOES(
        int n,
        int[] renderbuffers,
        int offset
    );

    // C function void glDeleteRenderbuffersOES ( GLsizei n, const GLuint *renderbuffers )

    public static native void glDeleteRenderbuffersOES(
        int n,
        java.nio.IntBuffer renderbuffers
    );

    // C function void glGenRenderbuffersOES ( GLsizei n, GLuint *renderbuffers )

    public static native void glGenRenderbuffersOES(
        int n,
        int[] renderbuffers,
        int offset
    );

    // C function void glGenRenderbuffersOES ( GLsizei n, GLuint *renderbuffers )

    public static native void glGenRenderbuffersOES(
        int n,
        java.nio.IntBuffer renderbuffers
    );

    // C function void glRenderbufferStorageOES ( GLenum target, GLenum internalformat, GLsizei width, GLsizei height )

    public static native void glRenderbufferStorageOES(
        int target,
        int internalformat,
        int width,
        int height
    );

    // C function void glGetRenderbufferParameterivOES ( GLenum target, GLenum pname, GLint *params )

    public static native void glGetRenderbufferParameterivOES(
        int target,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetRenderbufferParameterivOES ( GLenum target, GLenum pname, GLint *params )

    public static native void glGetRenderbufferParameterivOES(
        int target,
        int pname,
        java.nio.IntBuffer params
    );

    // C function GLboolean glIsFramebufferOES ( GLuint framebuffer )

    public static native boolean glIsFramebufferOES(
        int framebuffer
    );

    // C function void glBindFramebufferOES ( GLenum target, GLuint framebuffer )

    public static native void glBindFramebufferOES(
        int target,
        int framebuffer
    );

    // C function void glDeleteFramebuffersOES ( GLsizei n, const GLuint *framebuffers )

    public static native void glDeleteFramebuffersOES(
        int n,
        int[] framebuffers,
        int offset
    );

    // C function void glDeleteFramebuffersOES ( GLsizei n, const GLuint *framebuffers )

    public static native void glDeleteFramebuffersOES(
        int n,
        java.nio.IntBuffer framebuffers
    );

    // C function void glGenFramebuffersOES ( GLsizei n, GLuint *framebuffers )

    public static native void glGenFramebuffersOES(
        int n,
        int[] framebuffers,
        int offset
    );

    // C function void glGenFramebuffersOES ( GLsizei n, GLuint *framebuffers )

    public static native void glGenFramebuffersOES(
        int n,
        java.nio.IntBuffer framebuffers
    );

    // C function GLenum glCheckFramebufferStatusOES ( GLenum target )

    public static native int glCheckFramebufferStatusOES(
        int target
    );

    // C function void glFramebufferRenderbufferOES ( GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer )

    public static native void glFramebufferRenderbufferOES(
        int target,
        int attachment,
        int renderbuffertarget,
        int renderbuffer
    );

    // C function void glFramebufferTexture2DOES ( GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level )

    public static native void glFramebufferTexture2DOES(
        int target,
        int attachment,
        int textarget,
        int texture,
        int level
    );

    // C function void glGetFramebufferAttachmentParameterivOES ( GLenum target, GLenum attachment, GLenum pname, GLint *params )

    public static native void glGetFramebufferAttachmentParameterivOES(
        int target,
        int attachment,
        int pname,
        int[] params,
        int offset
    );

    // C function void glGetFramebufferAttachmentParameterivOES ( GLenum target, GLenum attachment, GLenum pname, GLint *params )

    public static native void glGetFramebufferAttachmentParameterivOES(
        int target,
        int attachment,
        int pname,
        java.nio.IntBuffer params
    );

    // C function void glGenerateMipmapOES ( GLenum target )

    public static native void glGenerateMipmapOES(
        int target
    );

    // C function void glCurrentPaletteMatrixOES ( GLuint matrixpaletteindex )

    public static native void glCurrentPaletteMatrixOES(
        int matrixpaletteindex
    );

    // C function void glLoadPaletteFromModelViewMatrixOES ( void )

    public static native void glLoadPaletteFromModelViewMatrixOES(
    );

    // C function void glMatrixIndexPointerOES ( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )

    private static native void glMatrixIndexPointerOESBounds(
        int size,
        int type,
        int stride,
        java.nio.Buffer pointer,
        int remaining
    );

    public static void glMatrixIndexPointerOES(
        int size,
        int type,
        int stride,
        java.nio.Buffer pointer
    ) {
        glMatrixIndexPointerOESBounds(
            size,
            type,
            stride,
            pointer,
            pointer.remaining()
        );
        if (((size == 2) ||
             (size == 3) ||
             (size == 4)) &&
            ((type == GL_FLOAT) ||
             (type == GL_BYTE) ||
             (type == GL_SHORT) ||
             (type == GL_FIXED)) &&
            (stride >= 0)) {
            _matrixIndexPointerOES = pointer;
        }
    }