diff options
author | Vinson Lee <vlee@vmware.com> | 2010-08-28 14:24:42 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-08-28 14:24:42 -0700 |
commit | 2dfd348e33f0152e3ab693ec3b53911331f5c349 (patch) | |
tree | a3bbe0d0207f6f6fb57c0670e2b17770c4114e03 /src/mesa/state_tracker | |
parent | d42b7d5f8d5eef73c89c2362beab94647ce12281 (diff) |
st/mesa: Include missing header in st_mesa_to_tgsi.c.
Include p_screen.h for complete type to pipe_screen.
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_mesa_to_tgsi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_mesa_to_tgsi.c b/src/mesa/state_tracker/st_mesa_to_tgsi.c index a19dcc9253..0ed822b8c2 100644 --- a/src/mesa/state_tracker/st_mesa_to_tgsi.c +++ b/src/mesa/state_tracker/st_mesa_to_tgsi.c @@ -32,9 +32,10 @@ */ #include "pipe/p_compiler.h" +#include "pipe/p_context.h" +#include "pipe/p_screen.h" #include "pipe/p_shader_tokens.h" #include "pipe/p_state.h" -#include "pipe/p_context.h" #include "tgsi/tgsi_ureg.h" #include "st_mesa_to_tgsi.h" #include "st_context.h" |