summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/intel_context.c
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2013-07-03 15:00:34 -0700
committerKenneth Graunke <kenneth@whitecape.org>2013-07-09 14:09:25 -0700
commitd5b4a3f5a34626e9841993900922384698ee61b8 (patch)
tree2bc01b1281bf5cc6afd54a173ee61d7778bd1e36 /src/mesa/drivers/dri/i965/intel_context.c
parent02128c448d1f4eedf70b3bdb4ec187cf405c530e (diff)
i965: Move intel_context::has_swizzling to brw_context.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Acked-by: Chris Forbes <chrisf@ijw.co.nz> Acked-by: Paul Berry <stereotype441@gmail.com> Acked-by: Anuj Phogat <anuj.phogat@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_context.c')
-rw-r--r--src/mesa/drivers/dri/i965/intel_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_context.c b/src/mesa/drivers/dri/i965/intel_context.c
index 626eab723d2..c9a5897ec5f 100644
--- a/src/mesa/drivers/dri/i965/intel_context.c
+++ b/src/mesa/drivers/dri/i965/intel_context.c
@@ -499,7 +499,7 @@ intelInitContext(struct brw_context *brw,
intel->must_use_separate_stencil = brw->intelScreen->hw_must_use_separate_stencil;
intel->has_hiz = intel->gen >= 6;
intel->has_llc = brw->intelScreen->hw_has_llc;
- intel->has_swizzling = brw->intelScreen->hw_has_swizzling;
+ brw->has_swizzling = brw->intelScreen->hw_has_swizzling;
memset(&ctx->TextureFormatSupported,
0, sizeof(ctx->TextureFormatSupported));