diff options
author | Vinson Lee <[email protected]> | 2011-01-05 23:11:54 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2011-01-05 23:11:54 -0800 |
commit | 0117da40cd7edd3d165bb28569c289b37eca12b9 (patch) | |
tree | 2ae38dec9956057361b85317d474bb2b759cc273 /src/mesa/main/texenv.c | |
parent | a728646fb55245477d35e2761c3e0d15099b4cd4 (diff) |
mesa: Include mtypes.h in files that use gl_context struct.
Directly include mtypes.h if a file uses a gl_context struct. This
allows future removal of headers that are not strictly necessary but
indirectly include mtypes.h for a file.
Diffstat (limited to 'src/mesa/main/texenv.c')
-rw-r--r-- | src/mesa/main/texenv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/texenv.c b/src/mesa/main/texenv.c index 508dbf4887d..194bcbea983 100644 --- a/src/mesa/main/texenv.c +++ b/src/mesa/main/texenv.c @@ -34,6 +34,7 @@ #include "main/context.h" #include "main/enums.h" #include "main/macros.h" +#include "main/mtypes.h" #include "main/texenv.h" #include "main/texstate.h" |