summaryrefslogtreecommitdiff
path: root/src/mesa/x86/x86_xform.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-03-04 15:56:16 -0700
committerBrian Paul <brianp@vmware.com>2009-03-04 15:56:16 -0700
commit9ec7f083f3f3e40081a452ceba8b0e7cd073fb47 (patch)
treec8d8aaf50d1e684cc3bd25f7547beb5ef8aa5542 /src/mesa/x86/x86_xform.c
parentdd9af786507fe3f199ecc94906b263843848c6ba (diff)
mesa: move sse.h and 3dnow.h #includes
Diffstat (limited to 'src/mesa/x86/x86_xform.c')
-rw-r--r--src/mesa/x86/x86_xform.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/x86/x86_xform.c b/src/mesa/x86/x86_xform.c
index 833d2cc106..7dec7a9896 100644
--- a/src/mesa/x86/x86_xform.c
+++ b/src/mesa/x86/x86_xform.c
@@ -35,6 +35,15 @@
#include "x86_xform.h"
#include "common_x86_asm.h"
+#ifdef USE_X86_ASM
+#ifdef USE_3DNOW_ASM
+#include "3dnow.h"
+#endif
+#ifdef USE_SSE_ASM
+#include "sse.h"
+#endif
+#endif
+
#ifdef DEBUG_MATH
#include "math/m_debug.h"
#endif