commit | aa2069586d434dd0487b0daa2b583efe801a0d51 | [log] [tgz] |
---|---|---|
author | Brian Paul <brian.paul@tungstengraphics.com> | Fri Sep 16 18:14:24 2005 +0000 |
committer | Brian Paul <brian.paul@tungstengraphics.com> | Fri Sep 16 18:14:24 2005 +0000 |
tree | cac0a05d5ebc786ae80d18080b1ad2896cac8cc6 | |
parent | 3cc67cb8cd1302c20218dda70599523102a29e10 [diff] [blame] |
use mesa import wrappers, bug 4468
diff --git a/src/mesa/math/m_matrix.c b/src/mesa/math/m_matrix.c index 408db9b..ff32e3d 100644 --- a/src/mesa/math/m_matrix.c +++ b/src/mesa/math/m_matrix.c
@@ -804,8 +804,8 @@ GLfloat m[16]; GLboolean optimized; - s = (GLfloat) sin( angle * DEG2RAD ); - c = (GLfloat) cos( angle * DEG2RAD ); + s = (GLfloat) _mesa_sin( angle * DEG2RAD ); + c = (GLfloat) _mesa_cos( angle * DEG2RAD ); MEMCPY(m, Identity, sizeof(GLfloat)*16); optimized = GL_FALSE;