[MPlayer-cvslog] r18579 - in trunk/libvo: gl_common.c gl_common.h
reimar
subversion at mplayerhq.hu
Mon Jun 5 13:26:34 CEST 2006
Author: reimar
Date: Mon Jun 5 13:26:33 2006
New Revision: 18579
Modified:
trunk/libvo/gl_common.c
trunk/libvo/gl_common.h
Log:
add (currently unused) lookup for glTexImage3D
Modified: trunk/libvo/gl_common.c
==============================================================================
--- trunk/libvo/gl_common.c (original)
+++ trunk/libvo/gl_common.c Mon Jun 5 13:26:33 2006
@@ -54,6 +54,8 @@
void (APIENTRY *ProgramEnvParameter4f)(GLenum, GLuint, GLfloat, GLfloat,
GLfloat, GLfloat);
int (APIENTRY *SwapInterval)(int);
+void (APIENTRY *TexImage3D)(GLenum, GLint, GLenum, GLsizei, GLsizei, GLsizei,
+ GLint, GLenum, GLenum, const GLvoid *);
/** \} */ // end of glextfunctions group
//! \defgroup glgeneral OpenGL general helper functions
@@ -278,6 +280,7 @@
{(void **)&ProgramString, "_program", {"glProgramString", "glProgramStringARB", "glProgramStringNV", NULL}},
{(void **)&ProgramEnvParameter4f, "_program", {"glProgramEnvParameter4f", "glProgramEnvParameter4fARB", "glProgramEnvParameter4fNV", NULL}},
{(void **)&SwapInterval, "_swap_control", {"glXSwapInterval", "glXSwapIntervalEXT", "glXSwapIntervalSGI", "wglSwapInterval", "wglSwapIntervalEXT", "wglSwapIntervalSGI", NULL}},
+ {(void **)&TexImage3D, NULL, {"glTexImage3D", NULL}},
{NULL}
};
Modified: trunk/libvo/gl_common.h
==============================================================================
--- trunk/libvo/gl_common.h (original)
+++ trunk/libvo/gl_common.h Mon Jun 5 13:26:33 2006
@@ -290,5 +290,7 @@
extern void (APIENTRY *ProgramEnvParameter4f)(GLenum, GLuint, GLfloat, GLfloat,
GLfloat, GLfloat);
extern int (APIENTRY *SwapInterval)(int);
+extern void (APIENTRY *TexImage3D)(GLenum, GLint, GLenum, GLsizei, GLsizei,
+ GLsizei, GLint, GLenum, GLenum, const GLvoid *);
#endif
More information about the MPlayer-cvslog
mailing list