diff options
author | Marek Olšák <[email protected]> | 2018-04-08 13:13:08 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-04-12 19:31:30 -0400 |
commit | 43d66c8c2d4d3d4dee1309856b6ce6c5393682e5 (patch) | |
tree | 1d2ffdca4a8cf765e8db3c71e491df6611c45556 /src/intel | |
parent | 57f4268da49ce6969e597fe3441d6a9cd8bac562 (diff) |
mesa: include mtypes.h less
- remove mtypes.h from most header files
- add main/menums.h for often used definitions
- remove main/core.h
v2: fix radv build
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/common/gen_urb_config.c | 1 | ||||
-rw-r--r-- | src/intel/compiler/brw_compiler.h | 1 | ||||
-rw-r--r-- | src/intel/compiler/brw_eu.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/intel/common/gen_urb_config.c b/src/intel/common/gen_urb_config.c index 937163b50b0..0b632149cd9 100644 --- a/src/intel/common/gen_urb_config.c +++ b/src/intel/common/gen_urb_config.c @@ -26,6 +26,7 @@ #include "util/macros.h" #include "main/macros.h" +#include "compiler/shader_enums.h" #include "gen_l3_config.h" diff --git a/src/intel/compiler/brw_compiler.h b/src/intel/compiler/brw_compiler.h index d3ae6499b91..875b2936fd8 100644 --- a/src/intel/compiler/brw_compiler.h +++ b/src/intel/compiler/brw_compiler.h @@ -27,6 +27,7 @@ #include <stdio.h> #include "dev/gen_device_info.h" #include "main/macros.h" +#include "main/mtypes.h" #include "util/ralloc.h" #ifdef __cplusplus diff --git a/src/intel/compiler/brw_eu.h b/src/intel/compiler/brw_eu.h index ca72666a55a..120a74f0357 100644 --- a/src/intel/compiler/brw_eu.h +++ b/src/intel/compiler/brw_eu.h @@ -34,6 +34,7 @@ #define BRW_EU_H #include <stdbool.h> +#include <stdio.h> #include "brw_inst.h" #include "brw_eu_defines.h" #include "brw_reg.h" |