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/mesa/tnl | |
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/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_rebase.c | 1 | ||||
-rw-r--r-- | src/mesa/tnl/t_vb_fog.c | 1 | ||||
-rw-r--r-- | src/mesa/tnl/t_vb_texgen.c | 1 | ||||
-rw-r--r-- | src/mesa/tnl/tnl.h | 3 |
4 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/tnl/t_rebase.c b/src/mesa/tnl/t_rebase.c index d28512423c3..09a8a3da720 100644 --- a/src/mesa/tnl/t_rebase.c +++ b/src/mesa/tnl/t_rebase.c @@ -48,6 +48,7 @@ #include <stdio.h> #include "main/bufferobj.h" +#include "main/errors.h" #include "main/glheader.h" #include "main/imports.h" #include "main/mtypes.h" diff --git a/src/mesa/tnl/t_vb_fog.c b/src/mesa/tnl/t_vb_fog.c index 5489ed6857f..c224a4192a4 100644 --- a/src/mesa/tnl/t_vb_fog.c +++ b/src/mesa/tnl/t_vb_fog.c @@ -27,6 +27,7 @@ #include "c99_math.h" +#include "main/errors.h" #include "main/glheader.h" #include "main/macros.h" #include "main/imports.h" diff --git a/src/mesa/tnl/t_vb_texgen.c b/src/mesa/tnl/t_vb_texgen.c index a13262d1db2..bd585324e2b 100644 --- a/src/mesa/tnl/t_vb_texgen.c +++ b/src/mesa/tnl/t_vb_texgen.c @@ -34,6 +34,7 @@ * including any use thereof or modifications thereto. */ +#include "main/errors.h" #include "main/glheader.h" #include "main/macros.h" #include "main/imports.h" diff --git a/src/mesa/tnl/tnl.h b/src/mesa/tnl/tnl.h index 45052a3a89c..e506aee6dfb 100644 --- a/src/mesa/tnl/tnl.h +++ b/src/mesa/tnl/tnl.h @@ -33,6 +33,9 @@ struct gl_vertex_array; struct gl_context; struct gl_program; +struct gl_buffer_object; +struct gl_transform_feedback_object; +struct dd_function_table; /* These are the public-access functions exported from tnl. (A few |