diff options
author | Vinson Lee <[email protected]> | 2010-08-05 00:52:30 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-08-05 00:52:30 -0700 |
commit | 4f9ca250d6172176263ef7415fce7140986bc0bc (patch) | |
tree | 83e44a2d0693c3fedbc69433baebed993f8af0c3 /src/mesa/state_tracker | |
parent | 66708fd8a98cc28dab756b9e29d026194ccdfcee (diff) |
st/mesa: Add missing headers to st_draw.h.
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_draw.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_draw.h b/src/mesa/state_tracker/st_draw.h index 3e0face656b..f36184487a6 100644 --- a/src/mesa/state_tracker/st_draw.h +++ b/src/mesa/state_tracker/st_draw.h @@ -34,8 +34,13 @@ #ifndef ST_DRAW_H #define ST_DRAW_H -struct _mesa_prim; +#include "main/compiler.h" +#include "main/glheader.h" +#include "main/mtypes.h" + struct _mesa_index_buffer; +struct _mesa_prim; +struct st_context; void st_init_draw( struct st_context *st ); |