diff options
author | Vinson Lee <[email protected]> | 2010-08-04 12:07:12 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-08-04 12:08:17 -0700 |
commit | eb4f2d4b0264e180f818230fa69a420793423eb7 (patch) | |
tree | f6bd52e67841da6e79ed2ad2075dfe22fac0c383 /src/mesa/state_tracker | |
parent | e6902afeee522494f1787cc7c79415f55dce2eb4 (diff) |
st/mesa: Clean up header file inclusion in st_cb_blit.h.
Replaced mtypes.h and st_context.h with forward declarations.
Added compiler.h for INLINE symbol.
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_cb_blit.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_cb_blit.h b/src/mesa/state_tracker/st_cb_blit.h index 7ab9a54df90..c230652cefc 100644 --- a/src/mesa/state_tracker/st_cb_blit.h +++ b/src/mesa/state_tracker/st_cb_blit.h @@ -29,8 +29,10 @@ #define ST_CB_BLIT_H -#include "main/mtypes.h" -#include "st_context.h" +#include "main/compiler.h" + +struct dd_function_table; +struct st_context; extern void |