summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/matrix.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-09-22 18:45:33 -0600
committerIan Romanick <ian.d.romanick@intel.com>2012-10-16 14:57:20 -0700
commit99940eef48980b795b10e43ac388b7435b8defbc (patch)
tree968fb41e8c9deb635e617311f9b3fd8e2d2e09a3 /src/mesa/main/matrix.c
parent198fa6452bf4cb7e5468263af5447932537c5314 (diff)
downloadexternal_mesa3d-99940eef48980b795b10e43ac388b7435b8defbc.zip
external_mesa3d-99940eef48980b795b10e43ac388b7435b8defbc.tar.gz
external_mesa3d-99940eef48980b795b10e43ac388b7435b8defbc.tar.bz2
mesa: remove #if _HAVE_FULL_GL checks
This is basically more of the "remove FEATURE_x" clean-up. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/main/matrix.c')
-rw-r--r--src/mesa/main/matrix.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/main/matrix.c b/src/mesa/main/matrix.c
index 4a329c66..28c4e2b 100644
--- a/src/mesa/main/matrix.c
+++ b/src/mesa/main/matrix.c
@@ -444,7 +444,6 @@ _mesa_Translatef( GLfloat x, GLfloat y, GLfloat z )
}
-#if _HAVE_FULL_GL
void GLAPIENTRY
_mesa_LoadMatrixd( const GLdouble *m )
{
@@ -487,10 +486,8 @@ _mesa_Translated( GLdouble x, GLdouble y, GLdouble z )
{
_mesa_Translatef((GLfloat) x, (GLfloat) y, (GLfloat) z);
}
-#endif
-#if _HAVE_FULL_GL
void GLAPIENTRY
_mesa_LoadTransposeMatrixfARB( const GLfloat *m )
{
@@ -529,7 +526,6 @@ _mesa_MultTransposeMatrixdARB( const GLdouble *m )
_math_transposefd(tm, m);
_mesa_MultMatrixf(tm);
}
-#endif