diff options
author | Brian Paul <brianp@vmware.com> | 2009-02-12 09:17:18 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-02-12 09:23:46 -0700 |
commit | 987aedd7dc75c095a96cb20b21bbad2f71857776 (patch) | |
tree | 6bf4840dbb0b8d000154f5ab5c7777ba074c578c /src/mesa/main | |
parent | f45fa843199e86593126cb9e3b94621b31dd7589 (diff) |
mesa: move _mesa_transform_vector() from m_xform.c to m_matrix.c
m_xform.c is omitted from gallium builds but _mesa_transform_vector() is
still needed.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/texgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texgen.c b/src/mesa/main/texgen.c index 244c7aaafc..d2baecb92a 100644 --- a/src/mesa/main/texgen.c +++ b/src/mesa/main/texgen.c @@ -34,7 +34,7 @@ #include "main/enums.h" #include "main/macros.h" #include "main/texgen.h" -#include "math/m_xform.h" +#include "math/m_matrix.h" |