diff options
author | Jason Ekstrand <[email protected]> | 2015-04-15 14:13:58 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-04-22 16:00:32 -0700 |
commit | 61c4702489fa1694892c5ce90ccf65a5094df3e7 (patch) | |
tree | e065364f3e0261f0f0eea2041a3e258b4d0450b5 /src/mesa/drivers/dri/i965/brw_sf.c | |
parent | 639314d40e78b5b56c3fc840b2f416e7fc519a4d (diff) |
i965: Remove the context field from brw_compiler
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_sf.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_sf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_sf.c b/src/mesa/drivers/dri/i965/brw_sf.c index 47bc45464ac..f056d8ce81a 100644 --- a/src/mesa/drivers/dri/i965/brw_sf.c +++ b/src/mesa/drivers/dri/i965/brw_sf.c @@ -60,7 +60,7 @@ static void compile_sf_prog( struct brw_context *brw, mem_ctx = ralloc_context(NULL); /* Begin the compilation: */ - brw_init_compile(brw, &c.func, mem_ctx); + brw_init_compile(brw->intelScreen->devinfo, &c.func, mem_ctx); c.key = *key; c.vue_map = brw->vue_map_geom_out; |