aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/mesa/main/depth.c
diff options
context:
space:
mode:
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 )