summaryrefslogtreecommitdiff
path: root/src/mesa/main/matrix.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-02-05 18:48:52 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-02-05 18:48:52 +0000
commitd8bc5a9eba720ffb6a503d32715f895dbdad7197 (patch)
treea111cd811ae0a122bd39ed5dde1604dbeb88b6d7 /src/mesa/main/matrix.c
parentdb7a3318aa82d99a908f16040ef1575ccea7cd2d (diff)
replaced frustrum with frustum
Diffstat (limited to 'src/mesa/main/matrix.c')
-rw-r--r--src/mesa/main/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/matrix.c b/src/mesa/main/matrix.c
index f7aea3f4c2..241898c20a 100644
--- a/src/mesa/main/matrix.c
+++ b/src/mesa/main/matrix.c
@@ -1,4 +1,4 @@
-/* $Id: matrix.c,v 1.30 2001/01/23 23:39:36 brianp Exp $ */
+/* $Id: matrix.c,v 1.31 2001/02/05 18:48:52 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -104,7 +104,7 @@ _mesa_Frustum( GLdouble left, GLdouble right,
return;
}
- _math_matrix_frustrum( mat, left, right, bottom, top, nearval, farval );
+ _math_matrix_frustum( mat, left, right, bottom, top, nearval, farval );
}