diff options
author | Vinson Lee <vlee@vmware.com> | 2010-08-04 13:17:57 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-08-04 13:18:55 -0700 |
commit | 2e85117b5f8909b8737e0c0e479360640e405192 (patch) | |
tree | 611c7b6990bda19059832b164e866c21bdb756a0 /src/mesa/state_tracker/st_cb_fbo.h | |
parent | 9a78e790dc4c40362b971ad5eff2505c02b73ed7 (diff) |
st/mesa: Add missing headers to st_cb_fbo.h.
Diffstat (limited to 'src/mesa/state_tracker/st_cb_fbo.h')
-rw-r--r-- | src/mesa/state_tracker/st_cb_fbo.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_fbo.h b/src/mesa/state_tracker/st_cb_fbo.h index 43b6c1e75f..62a9bbcb25 100644 --- a/src/mesa/state_tracker/st_cb_fbo.h +++ b/src/mesa/state_tracker/st_cb_fbo.h @@ -29,6 +29,15 @@ #ifndef ST_CB_FBO_H #define ST_CB_FBO_H +#include "main/compiler.h" +#include "main/glheader.h" +#include "main/mtypes.h" + +#include "pipe/p_compiler.h" +#include "pipe/p_format.h" + +struct dd_function_table; +struct pipe_context; /** * Derived renderbuffer class. Just need to add a pointer to the |