diff options
author | Matt Turner <[email protected]> | 2014-06-13 16:16:28 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-06-26 11:46:17 -0700 |
commit | 92233aee47a0c7debfd2db5242fa8792e4c9db07 (patch) | |
tree | b66df32ca9f464f50810fcdef530a6e1956e630c /src/mesa/drivers/dri/i965/brw_eu.h | |
parent | eaf78e56af1c0617365288a71172a76c3852e52c (diff) |
i965: Replace struct brw_compact_instruction with brw_compact_inst.
Signed-off-by: Matt Turner <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index 23a23896cc2..e06d832933e 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -411,9 +411,8 @@ void brw_init_compaction_tables(struct brw_context *brw); void brw_compact_instructions(struct brw_compile *p, int start_offset, int num_annotations, struct annotation *annotation); void brw_uncompact_instruction(struct brw_context *brw, brw_inst *dst, - struct brw_compact_instruction *src); -bool brw_try_compact_instruction(struct brw_compile *p, - struct brw_compact_instruction *dst, + brw_compact_inst *src); +bool brw_try_compact_instruction(struct brw_compile *p, brw_compact_inst *dst, brw_inst *src); void brw_debug_compact_uncompact(struct brw_context *brw, brw_inst *orig, |