diff options
author | Vinson Lee <vlee@vmware.com> | 2010-08-04 16:13:15 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-08-04 16:13:15 -0700 |
commit | 2bb3bfa943d3250d036673dbdea215b19d70c21e (patch) | |
tree | ecc350597f6e7c41c9cee73742aba9f826ab6932 /src/mesa/state_tracker/st_cb_program.h | |
parent | 7f7bbf0d5b78e0a4ace7ad6eddf5e73a826c75eb (diff) |
st/mesa: Add missing header in st_cb_program.h.
Include mtypes.h for GLcontext symbol.
Diffstat (limited to 'src/mesa/state_tracker/st_cb_program.h')
-rw-r--r-- | src/mesa/state_tracker/st_cb_program.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_program.h b/src/mesa/state_tracker/st_cb_program.h index 0de96f2fd2..0fd179ef3d 100644 --- a/src/mesa/state_tracker/st_cb_program.h +++ b/src/mesa/state_tracker/st_cb_program.h @@ -29,6 +29,10 @@ #define ST_CB_PROGRAM_H +#include "main/mtypes.h" + +struct dd_function_table; + extern void st_init_program_functions(struct dd_function_table *functions); |