diff options
author | Marek Olšák <[email protected]> | 2020-03-25 21:11:44 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-27 21:00:09 +0000 |
commit | e5339fe4a47c242693962c9f90bbab8b74935cba (patch) | |
tree | f625ba8d1d8c073b7b13d07f259da701e6339e4f /src/mesa/math | |
parent | 6cfe074b8617f92b4538f3006b0c4e55d6681436 (diff) |
Move compiler.h and imports.h/c from src/mesa/main into src/util
Reviewed-by: Timothy Arceri <[email protected]
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4324>
Diffstat (limited to 'src/mesa/math')
-rw-r--r-- | src/mesa/math/m_debug_clip.c | 2 | ||||
-rw-r--r-- | src/mesa/math/m_debug_norm.c | 2 | ||||
-rw-r--r-- | src/mesa/math/m_debug_xform.c | 2 | ||||
-rw-r--r-- | src/mesa/math/m_matrix.c | 2 | ||||
-rw-r--r-- | src/mesa/math/m_vector.c | 2 | ||||
-rw-r--r-- | src/mesa/math/m_xform.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/math/m_debug_clip.c b/src/mesa/math/m_debug_clip.c index 044768dbdd2..adb731ca8c0 100644 --- a/src/mesa/math/m_debug_clip.c +++ b/src/mesa/math/m_debug_clip.c @@ -28,7 +28,7 @@ #include "main/glheader.h" #include "main/context.h" #include "main/macros.h" -#include "main/imports.h" +#include "util/imports.h" #include "m_matrix.h" #include "m_xform.h" diff --git a/src/mesa/math/m_debug_norm.c b/src/mesa/math/m_debug_norm.c index 8be07eecbe3..7ad5b6f6b29 100644 --- a/src/mesa/math/m_debug_norm.c +++ b/src/mesa/math/m_debug_norm.c @@ -30,7 +30,7 @@ #include "main/glheader.h" #include "main/context.h" #include "main/macros.h" -#include "main/imports.h" +#include "util/imports.h" #include "m_matrix.h" #include "m_xform.h" diff --git a/src/mesa/math/m_debug_xform.c b/src/mesa/math/m_debug_xform.c index 632c82ea258..f6e0bb24f54 100644 --- a/src/mesa/math/m_debug_xform.c +++ b/src/mesa/math/m_debug_xform.c @@ -29,7 +29,7 @@ #include "main/glheader.h" #include "main/context.h" #include "main/macros.h" -#include "main/imports.h" +#include "util/imports.h" #include "m_matrix.h" #include "m_xform.h" diff --git a/src/mesa/math/m_matrix.c b/src/mesa/math/m_matrix.c index d3f89ee7cb7..cc3af6870f8 100644 --- a/src/mesa/math/m_matrix.c +++ b/src/mesa/math/m_matrix.c @@ -38,7 +38,7 @@ #include "c99_math.h" #include "main/errors.h" #include "main/glheader.h" -#include "main/imports.h" +#include "util/imports.h" #include "main/macros.h" #define MATH_ASM_PTR_SIZE sizeof(void *) #include "math/m_vector_asm.h" diff --git a/src/mesa/math/m_vector.c b/src/mesa/math/m_vector.c index f25b7b20642..af4eceaf014 100644 --- a/src/mesa/math/m_vector.c +++ b/src/mesa/math/m_vector.c @@ -30,7 +30,7 @@ #include <stddef.h> #include "main/glheader.h" -#include "main/imports.h" +#include "util/imports.h" #include "main/macros.h" #include "m_vector.h" diff --git a/src/mesa/math/m_xform.h b/src/mesa/math/m_xform.h index 0bb8e9bd861..d3a5c81d648 100644 --- a/src/mesa/math/m_xform.h +++ b/src/mesa/math/m_xform.h @@ -27,7 +27,7 @@ #define _M_XFORM_H -#include "main/compiler.h" +#include "util/compiler.h" #include "main/glheader.h" #include "math/m_matrix.h" #include "math/m_vector.h" |