aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2015-04-15 14:13:58 -0700
committerJason Ekstrand <[email protected]>2015-04-22 16:00:32 -0700
commit61c4702489fa1694892c5ce90ccf65a5094df3e7 (patch)
treee065364f3e0261f0f0eea2041a3e258b4d0450b5 /src/mesa/drivers/dri/i965/brw_fs_generator.cpp
parent639314d40e78b5b56c3fc840b2f416e7fc519a4d (diff)
i965: Remove the context field from brw_compiler
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_generator.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_generator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
index 6b4362bd0bb..3e103b21f45 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
@@ -139,7 +139,7 @@ fs_generator::fs_generator(struct brw_context *brw,
ctx = &brw->ctx;
p = rzalloc(mem_ctx, struct brw_compile);
- brw_init_compile(brw, p, mem_ctx);
+ brw_init_compile(brw->intelScreen->devinfo, p, mem_ctx);
}
fs_generator::~fs_generator()