summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-25 16:07:51 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-25 16:07:51 +0000
commit5c656ebbc83c9a4e6a02de2c6331f3187b3e2927 (patch)
tree97497184db8f4c9e865bbde3c7721d8f17f239e5 /libvo
parent0b53d363d4a5efe2e407acc6610cc83f6404f1b7 (diff)
downloadmpv-5c656ebbc83c9a4e6a02de2c6331f3187b3e2927.tar.bz2
mpv-5c656ebbc83c9a4e6a02de2c6331f3187b3e2927.tar.xz
The fragment program functions are and most likely always will be ARB-only,
so do not check for other function name variants. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22344 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/gl_common.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libvo/gl_common.c b/libvo/gl_common.c
index f845521c78..ef81d9d189 100644
--- a/libvo/gl_common.c
+++ b/libvo/gl_common.c
@@ -277,12 +277,12 @@ static const extfunc_desc_t extfuncs[] = {
{(void **)&ActiveTexture, NULL, {"glActiveTexture", "glActiveTextureARB", NULL}},
{(void **)&BindTexture, NULL, {"glBindTexture", "glBindTextureARB", "glBindTextureEXT", NULL}},
{(void **)&MultiTexCoord2f, NULL, {"glMultiTexCoord2f", "glMultiTexCoord2fARB", NULL}},
- {(void **)&GenPrograms, "_program", {"glGenPrograms", "glGenProgramsARB", "glGenProgramsNV", NULL}},
- {(void **)&DeletePrograms, "_program", {"glDeletePrograms", "glDeleteProgramsARB", "glDeleteProgramsNV", NULL}},
- {(void **)&BindProgram, "_program", {"glBindProgram", "glBindProgramARB", "glBindProgramNV", NULL}},
- {(void **)&ProgramString, "_program", {"glProgramString", "glProgramStringARB", "glProgramStringNV", NULL}},
- {(void **)&GetProgramiv, "_program", {"glGetProgramiv", "glGetProgramivARB", "glGetProgramivNV", NULL}},
- {(void **)&ProgramEnvParameter4f, "_program", {"glProgramEnvParameter4f", "glProgramEnvParameter4fARB", "glProgramEnvParameter4fNV", NULL}},
+ {(void **)&GenPrograms, "_program", {"glGenProgramsARB", NULL}},
+ {(void **)&DeletePrograms, "_program", {"glDeleteProgramsARB", NULL}},
+ {(void **)&BindProgram, "_program", {"glBindProgramARB", NULL}},
+ {(void **)&ProgramString, "_program", {"glProgramStringARB", NULL}},
+ {(void **)&GetProgramiv, "_program", {"glGetProgramivARB", NULL}},
+ {(void **)&ProgramEnvParameter4f, "_program", {"glProgramEnvParameter4fARB", NULL}},
{(void **)&SwapInterval, "_swap_control", {"glXSwapInterval", "glXSwapIntervalEXT", "glXSwapIntervalSGI", "wglSwapInterval", "wglSwapIntervalEXT", "wglSwapIntervalSGI", NULL}},
{(void **)&TexImage3D, NULL, {"glTexImage3D", NULL}},
{NULL}