diff options
author | Vinson Lee <[email protected]> | 2010-07-31 23:04:41 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-07-31 23:04:41 -0700 |
commit | 9846b0627149e221c9fbd7c3379e33fb68e68511 (patch) | |
tree | a73eb43172b1911f29fa5cc56f6e28f31cf2e036 /src/mesa/state_tracker/st_texture.c | |
parent | e7242b6e8a6df30f198d112b4da885f9717191a7 (diff) |
mesa: Remove inclusion of compiler.h from mtypes.h.
mtypes.h does not use any symbols from compiler.h.
Also add the required headers for files that depended on symbols from
compiler.h but were indirectly including compiler.h through mtypes.h.
Diffstat (limited to 'src/mesa/state_tracker/st_texture.c')
-rw-r--r-- | src/mesa/state_tracker/st_texture.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_texture.c b/src/mesa/state_tracker/st_texture.c index dbdf1ea1ad0..add6e949dfb 100644 --- a/src/mesa/state_tracker/st_texture.c +++ b/src/mesa/state_tracker/st_texture.c @@ -25,14 +25,14 @@ * **************************************************************************/ +#include <stdio.h> + #include "st_context.h" #include "st_format.h" #include "st_texture.h" #include "st_cb_fbo.h" #include "main/enums.h" -#undef Elements /* fix re-defined macro warning */ - #include "pipe/p_state.h" #include "pipe/p_context.h" #include "pipe/p_defines.h" |