diff options
author | Vinson Lee <vlee@vmware.com> | 2010-08-07 22:01:27 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-08-07 22:01:27 -0700 |
commit | c20e9774679691fef3a2be3d64621a9e1c76fa83 (patch) | |
tree | 8986f7184bb4ec200a9843420afcbdedc050867c | |
parent | e616d05b221889b62f7136e6e26a646c885f6ff8 (diff) |
swrast: Reduce header file inclusion in s_texcombine.h.
Include mtypes.h for GLcontext sybmol.
Include s_span.h for SWspan symbol.
-rw-r--r-- | src/mesa/swrast/s_texcombine.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_texcombine.h b/src/mesa/swrast/s_texcombine.h index 9ed96efb87..4f5dfbe1af 100644 --- a/src/mesa/swrast/s_texcombine.h +++ b/src/mesa/swrast/s_texcombine.h @@ -27,7 +27,8 @@ #define S_TEXCOMBINE_H -#include "swrast.h" +#include "main/mtypes.h" +#include "s_span.h" extern void _swrast_texture_span( GLcontext *ctx, SWspan *span ); |