diff options
author | Keith Whitwell <[email protected]> | 1999-10-08 09:27:09 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 1999-10-08 09:27:09 +0000 |
commit | 485f04074151686fa24d40e3eeb83029d3d8c425 (patch) | |
tree | d74a44fb266d6534fbbc060be7658f9deefea538 /src/mesa/main/matrix.c | |
parent | a7313e045dfd1ab439e8e01664d402ea9ce0a37e (diff) |
Fixed includes & added a few hooks for the DRI.kw-mesa-1
Diffstat (limited to 'src/mesa/main/matrix.c')
-rw-r--r-- | src/mesa/main/matrix.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/main/matrix.c b/src/mesa/main/matrix.c index b15b72181dd..154a038b923 100644 --- a/src/mesa/main/matrix.c +++ b/src/mesa/main/matrix.c @@ -1,4 +1,4 @@ -/* $Id: matrix.c,v 1.4 1999/09/19 23:06:40 keithw Exp $ */ +/* $Id: matrix.c,v 1.5 1999/10/08 09:27:11 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -43,10 +43,14 @@ #ifdef PC_HEADER #include "all.h" #else +#ifndef XFree86Server #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#else +#include "GL/xf86glx.h" +#endif #include "context.h" #include "enums.h" #include "macros.h" @@ -298,7 +302,7 @@ static GLboolean invert_matrix_general( GLmatrix *mat ) /* Adapted from graphics gems II. */ -GLboolean invert_matrix_3d_general( GLmatrix *mat ) +static GLboolean invert_matrix_3d_general( GLmatrix *mat ) { const GLfloat *in = mat->m; GLfloat *out = mat->inv; |