Home | History | Annotate | Download | only in OpenGLESDispatch
      1 !gles1_extensions
      2 
      3 %#include <GLES/glext.h>
      4 
      5 void glBlendEquationSeparateOES(GLenum modeRGB, GLenum modeAlpha);
      6 void glBlendFuncSeparateOES(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
      7 void glBlendEquationOES(GLenum mode);
      8 
      9 void glDrawTexsOES(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height);
     10 void glDrawTexiOES(GLint x, GLint y, GLint z, GLint width, GLint height);
     11 void glDrawTexxOES(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
     12 void glDrawTexsvOES(const GLshort *coords);
     13 void glDrawTexivOES(const GLint *coords);
     14 void glDrawTexxvOES(const GLfixed *coords);
     15 void glDrawTexfOES(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height);
     16 void glDrawTexfvOES(const GLfloat *coords);
     17 
     18 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image);
     19 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image);
     20 
     21 GLboolean glIsRenderbufferOES(GLuint renderbuffer);
     22 void glBindRenderbufferOES(GLenum target, GLuint renderbuffer);
     23 void glDeleteRenderbuffersOES(GLsizei n, const GLuint* renderbuffers);
     24 void glGenRenderbuffersOES(GLsizei n, GLuint* renderbuffers);
     25 void glRenderbufferStorageOES(GLenum target, GLenum internalformat, GLsizei width, GLsizei height);
     26 void glGetRenderbufferParameterivOES(GLenum target, GLenum pname, GLint* params);
     27 GLboolean glIsFramebufferOES(GLuint framebuffer);
     28 void glBindFramebufferOES(GLenum target, GLuint framebuffer);
     29 void glDeleteFramebuffersOES(GLsizei n, const GLuint* framebuffers);
     30 void glGenFramebuffersOES(GLsizei n, GLuint* framebuffers);
     31 GLenum glCheckFramebufferStatusOES(GLenum target);
     32 void glFramebufferRenderbufferOES(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
     33 void glFramebufferTexture2DOES(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
     34 void glGetFramebufferAttachmentParameterivOES(GLenum target, GLenum attachment, GLenum pname, GLint* params);
     35 void glGenerateMipmapOES(GLenum target);
     36