aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/mesa/main/depth.c
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-01-15 15:54:40 +0000
committermarha <marha@users.sourceforge.net>2011-01-15 15:54:40 +0000
commit6feea7e6cdde235d7e3727c4155ca9f8d90df3ca (patch)
treea076f2c272c1ece006576805a07b484bbe614a07 /mesalib/src/mesa/main/depth.c
parent175af178d1500ccafa7e7026959c138f5b8d9312 (diff)
downloadvcxsrv-6feea7e6cdde235d7e3727c4155ca9f8d90df3ca.tar.gz
vcxsrv-6feea7e6cdde235d7e3727c4155ca9f8d90df3ca.tar.bz2
vcxsrv-6feea7e6cdde235d7e3727c4155ca9f8d90df3ca.zip
mesalib git update 14/1/2011
Diffstat (limited to 'mesalib/src/mesa/main/depth.c')
-rw-r--r--mesalib/src/mesa/main/depth.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/mesalib/src/mesa/main/depth.c b/mesalib/src/mesa/main/depth.c
index 9ab08df29..fe1380e71 100644
--- a/mesalib/src/mesa/main/depth.c
+++ b/mesalib/src/mesa/main/depth.c
@@ -56,6 +56,12 @@ _mesa_ClearDepth( GLclampd depth )
}
+void GLAPIENTRY
+_mesa_ClearDepthf( GLclampf depth )
+{
+ _mesa_ClearDepth(depth);
+}
+
void GLAPIENTRY
_mesa_DepthFunc( GLenum func )