diff options
author | Jason Ekstrand <[email protected]> | 2015-04-15 13:19:21 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-04-22 16:00:32 -0700 |
commit | c3e5f32840fbc7b44a15b2c7c7d7299cbd6d332a (patch) | |
tree | 3061869c70ab7a73ea58adabdb803573d53aa3f8 /src/mesa/drivers/dri/i965/brw_eu.c | |
parent | 4e9c79c847c81701300b5b0d97d85dcfad32239a (diff) |
i965: Make instruction compaction take a device_info instead of a context
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.c b/src/mesa/drivers/dri/i965/brw_eu.c index b98a0895f6c..deeb4feb5be 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.c +++ b/src/mesa/drivers/dri/i965/brw_eu.c @@ -282,7 +282,7 @@ brw_disassemble(struct brw_context *brw, ((uint32_t *)insn)[0]); } - brw_uncompact_instruction(brw, &uncompacted, compacted); + brw_uncompact_instruction(brw->intelScreen->devinfo, &uncompacted, compacted); insn = &uncompacted; offset += 8; } else { |