From: Dave Airlie Date: Mon, 25 Apr 2016 23:42:38 +0000 (+1000) Subject: gallium/tgsi: move tgsi_exec.h header out of draw_context.h X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a6aae0c24d83675ecaaf0c6d1d8f05ad9175a9fe;p=mesa.git gallium/tgsi: move tgsi_exec.h header out of draw_context.h It gets annoying that changing the tgsi exec rebuilds the state tracker unnecessarily. Putting this include into draw_gs.h which uses it causes a lot less rebuilds. Reviewed-by: Brian Paul Signed-off-by: Dave Airlie --- diff --git a/src/gallium/auxiliary/draw/draw_context.h b/src/gallium/auxiliary/draw/draw_context.h index 3e6722fcb7e..9167ffde753 100644 --- a/src/gallium/auxiliary/draw/draw_context.h +++ b/src/gallium/auxiliary/draw/draw_context.h @@ -39,7 +39,6 @@ #include "pipe/p_state.h" -#include "tgsi/tgsi_exec.h" struct pipe_context; struct draw_context; diff --git a/src/gallium/auxiliary/draw/draw_gs.h b/src/gallium/auxiliary/draw/draw_gs.h index 663ba847cfe..d256a05d16e 100644 --- a/src/gallium/auxiliary/draw/draw_gs.h +++ b/src/gallium/auxiliary/draw/draw_gs.h @@ -29,6 +29,7 @@ #define DRAW_GS_H #include "draw_context.h" +#include "tgsi/tgsi_exec.h" #include "draw_private.h" #define MAX_TGSI_PRIMITIVES 4