diff options
author | Kenneth Graunke <[email protected]> | 2013-07-02 18:56:43 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-07-09 14:08:48 -0700 |
commit | a69274454b6bde265a910ca5bd3199217431f5b5 (patch) | |
tree | 605f7a7d18def1a4433113383b2302a90b34b11b /src/mesa/drivers/dri/i965/brw_tex_layout.c | |
parent | 99ebf9d07a23b8c920912dc8289d97e17c753ee2 (diff) |
i965: Replace #include "intel_context.h" with brw_context.h.
brw_context.h includes intel_context.h, but additionally makes the
brw_context structure available. Switching this allows us to start
using brw_context in more places.
Signed-off-by: Kenneth Graunke <[email protected]>
Acked-by: Chris Forbes <[email protected]>
Acked-by: Paul Berry <[email protected]>
Acked-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_tex_layout.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_tex_layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_tex_layout.c b/src/mesa/drivers/dri/i965/brw_tex_layout.c index 0a46d1c4032..ac02b5c94d1 100644 --- a/src/mesa/drivers/dri/i965/brw_tex_layout.c +++ b/src/mesa/drivers/dri/i965/brw_tex_layout.c @@ -33,7 +33,7 @@ */ #include "intel_mipmap_tree.h" -#include "intel_context.h" +#include "brw_context.h" #include "main/macros.h" #define FILE_DEBUG_FLAG DEBUG_MIPTREE |