summaryrefslogtreecommitdiff
path: root/src/mesa/main/texgen.c
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2009-10-20 12:39:56 +0800
committerBrian Paul <brianp@vmware.com>2009-11-05 20:04:20 -0700
commit7cdf8ab0967b1a80c16d317ed5b0e3b810312ad1 (patch)
tree9491af545dcf29b94297d5543da6e32b65c22c7e /src/mesa/main/texgen.c
parent5b426288c2dbc42ef44ea13fe37afa77223107bb (diff)
mesa/main: Make _mesa_TexGenf and _mesa_GetTexGenfv global again.
They are needed by OpenGL ES overlay. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
Diffstat (limited to 'src/mesa/main/texgen.c')
-rw-r--r--src/mesa/main/texgen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texgen.c b/src/mesa/main/texgen.c
index 733e129fcf..8d114108f8 100644
--- a/src/mesa/main/texgen.c
+++ b/src/mesa/main/texgen.c
@@ -208,7 +208,7 @@ _mesa_TexGendv(GLenum coord, GLenum pname, const GLdouble *params )
}
-static void GLAPIENTRY
+void GLAPIENTRY
_mesa_TexGenf( GLenum coord, GLenum pname, GLfloat param )
{
_mesa_TexGenfv(coord, pname, &param);
@@ -261,7 +261,7 @@ _mesa_GetTexGendv( GLenum coord, GLenum pname, GLdouble *params )
-static void GLAPIENTRY
+void GLAPIENTRY
_mesa_GetTexGenfv( GLenum coord, GLenum pname, GLfloat *params )
{
struct gl_texture_unit *texUnit;