diff options
author | Vinson Lee <vlee@vmware.com> | 2010-08-07 21:01:12 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-08-07 21:01:12 -0700 |
commit | f009f177fdb891529a4281b2d28f9eb76a365bed (patch) | |
tree | 8e963d8b7f2da23668ec86b06bbde90b254ab07a /src/mesa/swrast | |
parent | 7b562854870826c53a895a9a8db38af28bbde673 (diff) |
swrast: Reduce header file inclusion in s_fragprog.h.
s_fragprog.h
Include mtype.h for GLcontext symbol.
Include s_span.h for SWspan symbol.
s_fragprog.c
Include s_context.h now that it is removed from s_fragprog.h.
Diffstat (limited to 'src/mesa/swrast')
-rw-r--r-- | src/mesa/swrast/s_fragprog.c | 1 | ||||
-rw-r--r-- | src/mesa/swrast/s_fragprog.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_fragprog.c b/src/mesa/swrast/s_fragprog.c index a2c2a10c3d..9facb44d9b 100644 --- a/src/mesa/swrast/s_fragprog.c +++ b/src/mesa/swrast/s_fragprog.c @@ -26,6 +26,7 @@ #include "main/colormac.h" #include "program/prog_instruction.h" +#include "s_context.h" #include "s_fragprog.h" #include "s_span.h" diff --git a/src/mesa/swrast/s_fragprog.h b/src/mesa/swrast/s_fragprog.h index e1b7e67918..92b9d01e17 100644 --- a/src/mesa/swrast/s_fragprog.h +++ b/src/mesa/swrast/s_fragprog.h @@ -27,7 +27,8 @@ #define S_FRAGPROG_H -#include "s_context.h" +#include "main/mtypes.h" +#include "s_span.h" extern void |