|
| void | glMatrixMode (GLenum mode) |
| |
| void | glPushMatrix () |
| |
| void | glPopMatrix () |
| |
| void | glLoadIdentity () |
| |
| void | glLoadMatrixf (const GLfloat *m) |
| |
| void | glTranslatef (GLfloat x, GLfloat y, GLfloat z) |
| |
| void | glRotatef (GLfloat angle, GLfloat x, GLfloat y, GLfloat z) |
| |
| void | glScalef (GLfloat x, GLfloat y, GLfloat z) |
| |
| void | glMultMatrixf (const GLfloat *m) |
| |
| void | glViewport (GLint x, GLint y, GLsizei width, GLsizei height) |
| |
| void | glFrustumf (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) |
| |
| void | glOrthof (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar) |
| |
| void | gluPerspectivef (GLfloat fovy, GLfloat aspect, GLfloat zNear, GLfloat zFar) |
| |
| void | glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) |
| |
| void | glClear (GLbitfield mask) |
| |
| void | glColor3f (GLfloat red, GLfloat green, GLfloat blue) |
| |
| void | glColor3fv (const GLfloat *v) |
| |
| void | glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) |
| |
| void | glColor4fv (const GLfloat *v) |
| |
| void | glColor4ub (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) |
| |
| void | glEnable (GLenum cap) |
| |
| void | glDisable (GLenum cap) |
| |
| void | glEnableClientState (GLenum array) |
| |
| void | glDisableClientState (GLenum array) |
| |
| void | glLineWidth (GLfloat width) |
| |
| void | glScissor (GLint x, GLint y, GLsizei width, GLsizei height) |
| |
| void | glGenTextures (GLsizei n, GLuint *textures) |
| |
| void | glDeleteTextures (GLsizei n, const GLuint *textures) |
| |
| void | glBindTexture (GLenum target, GLuint texture) |
| |
| void | glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid *pixels) |
| |
| void | glTexParameteri (GLenum target, GLenum pname, GLint param) |
| |
| void | glTexParameteriv (GLenum target, GLenum pname, const GLint *param) |
| |
| void | glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) |
| |
| void | glGetTexImage (GLenum target, GLint level, GLenum format, GLenum type, GLvoid *pixels) |
| |
| void | glPixelStorei (GLenum pname, GLint param) |
| |
| void | glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels) |
| |
| void | glGetTexLevelParameteriv (GLenum target, GLint level, GLenum pname, GLint *params) |
| |
| void | glReadBuffer (GLenum mode) |
| |
| void | glBlendFunc (GLenum sfactor, GLenum dfactor) |
| |
| void | glVertexPointer (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) |
| |
| void | glColorPointer (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) |
| |
| void | glTexCoordPointer (GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) |
| |
| void | glDrawArrays (GLenum mode, GLint first, GLsizei count) |
| |
| void | glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) |
| |
| void | glFlush () |
| |
| void | glFinish () |
| |
| GLenum | glGetError () |
| |
| void | glGetIntegerv (GLenum pname, GLint *params) |
| |
| void | glGetFloatv (GLenum pname, GLfloat *params) |
| |
| void | glGetPointerv (GLenum pname, GLvoid **params) |
| |
| void | glGenFramebuffers (GLsizei n, GLuint *ids) |
| |
| void | glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) |
| |
| void | glBindFramebuffer (GLenum target, GLuint framebuffer) |
| |
| void | glDeleteFramebuffers (GLsizei n, const GLuint *ids) |
| |
| GLenum | glCheckFramebufferStatus (GLenum target) |
| |
| const GLubyte * | glGetString (GLenum name) |
| |
| void | glActiveTexture (GLenum texture) |
| |
| void | glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers) |
| |
| void | glCullFace (GLenum mode) |
| |
| void | glPolygonMode (GLenum face, GLenum mode) |
| |
| void | glTexEnvi (GLenum target, GLenum pname, GLint param) |
| |
| void | glNormalPointer (GLenum type, GLsizei stride, const GLvoid *pointer) |
| |
| void | glDeleteProgram (GLuint program) |
| |
| void | glDeleteShader (GLuint shader) |
| |
| void | glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer) |
| |
| void | glEnableVertexAttribArray (GLuint index) |
| |
| void | glAttachShader (GLuint program, GLuint shader) |
| |
| void | glBindAttribLocation (GLuint program, GLuint index, const GLchar *name) |
| |
| GLuint | glCreateProgram () |
| |
| GLuint | glCreateShader (GLenum type) |
| |
| void | glShaderSource (GLuint shader, GLsizei count, const GLchar **strings, const GLint *lengths) |
| |
| void | glCompileShader (GLuint shader) |
| |
| void | glGetShaderiv (GLuint shader, GLenum pname, GLint *param) |
| |
| void | glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog) |
| |
| GLint | glGetUniformLocation (GLuint program, const GLchar *name) |
| |
| void | glLinkProgram (GLuint program) |
| |
| void | glGetProgramiv (GLuint program, GLenum pname, GLint *param) |
| |
| void | glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog) |
| |
| void | glUseProgram (GLuint program) |
| |
| void | glValidateProgram (GLuint program) |
| |
| void | glUniform1i (GLint location, GLint v0) |
| |
| void | glUniform2i (GLint location, GLint v0, GLint v1) |
| |
| void | glUniform3i (GLint location, GLint v0, GLint v1, GLint v2) |
| |
| void | glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3) |
| |
| void | glUniform1f (GLint location, GLfloat v0) |
| |
| void | glUniform2f (GLint location, GLfloat v0, GLfloat v1) |
| |
| void | glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2) |
| |
| void | glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3) |
| |
| void | glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value) |
| |
| void | TTE::GL::psvita_glInit (const InitParams ¶ms=TTE::GL::InitParams()) |
| |
| void | TTE::GL::psvita_glTerm () |
| |
| void | TTE::GL::psvita_glSwapBuffers () |
| |
| void | TTE::GL::psvita_glOutOfMemoryCallback (void(*callback)()) |
| |
| void | TTE::GL::psvita_glPrintAllocations (const char *header) |
| |
| void * | TTE::GL::psvita_glAllocGlOwnedTextureMem (GLsizei size, const char *name=NULL) |
| |
| bool | TTE::GL::psvita_glGxtIsGxtData (const void *gxtFile) |
| |
| unsigned int | TTE::GL::psvita_glGxtGetWidth (const void *gxtFile) |
| |
| unsigned int | TTE::GL::psvita_glGxtGetHeight (const void *gxtFile) |
| |
| bool | TTE::GL::psvita_glGxtHasAlpha (const void *gxtFile) |
| |