1!gles1_extensions 2namespaces translator,gles1 3 4# OpenGL functions which are needed ONLY for implementing GLES 1.1 EXTENSIONS 5void glCurrentPaletteMatrixARB(GLint index); 6void glMatrixIndexuivARB(GLint size, GLuint * indices); 7void glMatrixIndexPointerARB(GLint size, GLenum type, GLsizei stride, const GLvoid* pointer); 8void glWeightPointerARB(GLint size, GLenum type, GLsizei stride, const GLvoid* pointer); 9void glTexGenf(GLenum coord, GLenum pname, GLfloat param ); 10void glTexGeni(GLenum coord, GLenum pname, GLint param ); 11void glTexGenfv(GLenum coord, GLenum pname, const GLfloat *params ); 12void glTexGeniv(GLenum coord, GLenum pname, const GLint *params ); 13void glGetTexGenfv(GLenum coord, GLenum pname, GLfloat *params ); 14void glGetTexGeniv(GLenum coord, GLenum pname, GLint *params ); 15void glColorPointerWithDataSize(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei dataSize); 16void glNormalPointerWithDataSize(GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei dataSize); 17void glTexCoordPointerWithDataSize(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei dataSize); 18void glVertexPointerWithDataSize(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei dataSize); 19void glPointSizePointerOES(GLenum type, GLsizei stride, const GLvoid *pointer); 20void glBlendEquationSeparateOES(GLenum modeRGB, GLenum modeAlpha); 21void glBlendFuncSeparateOES(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); 22void glBlendEquationOES(GLenum mode); 23void glDrawTexsOES(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height); 24void glDrawTexiOES(GLint x, GLint y, GLint z, GLint width, GLint height); 25void glDrawTexxOES(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height); 26void glDrawTexsvOES(const GLshort *coords); 27void glDrawTexivOES(const GLint *coords); 28void glDrawTexxvOES(const GLfixed *coords); 29void glDrawTexfOES(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height); 30void glDrawTexfvOES(const GLfloat *coords); 31GLboolean glIsRenderbufferOES(GLuint renderbuffer); 32void glBindRenderbufferOES(GLenum target, GLuint renderbuffer); 33void glDeleteRenderbuffersOES(GLsizei n, const GLuint* renderbuffers); 34void glGenRenderbuffersOES(GLsizei n, GLuint* renderbuffers); 35void glRenderbufferStorageOES(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); 36void glGetRenderbufferParameterivOES(GLenum target, GLenum pname, GLint* params); 37GLboolean glIsFramebufferOES(GLuint framebuffer); 38void glBindFramebufferOES(GLenum target, GLuint framebuffer); 39void glDeleteFramebuffersOES(GLsizei n, const GLuint* framebuffers); 40void glGenFramebuffersOES(GLsizei n, GLuint* framebuffers); 41GLenum glCheckFramebufferStatusOES(GLenum target); 42void glFramebufferRenderbufferOES(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); 43void glFramebufferTexture2DOES(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); 44void glGetFramebufferAttachmentParameterivOES(GLenum target, GLenum attachment, GLenum pname, GLint* params); 45void glGenerateMipmapOES(GLenum target); 46void glCurrentPaletteMatrixOES(GLuint matrixpaletteindex); 47void glLoadPaletteFromModelViewMatrixOES(void); 48void glMatrixIndexPointerOES(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); 49void glWeightPointerOES(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); 50void glTexGenfOES(GLenum coord, GLenum pname, GLfloat param); 51void glTexGenfvOES(GLenum coord, GLenum pname, const GLfloat *params); 52void glTexGeniOES(GLenum coord, GLenum pname, GLint param); 53void glTexGenivOES(GLenum coord, GLenum pname, const GLint *params); 54void glTexGenxOES(GLenum coord, GLenum pname, GLfixed param); 55void glTexGenxvOES(GLenum coord, GLenum pname, const GLfixed *params); 56void glGetTexGenfvOES(GLenum coord, GLenum pname, GLfloat *params); 57void glGetTexGenivOES(GLenum coord, GLenum pname, GLint *params); 58void glGetTexGenxvOES(GLenum coord, GLenum pname, GLfixed *params); 59