diff options
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index 1bb5686c7d6..e65c270ef02 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -466,13 +466,13 @@ enum brw_conditional_mod brw_swap_cmod(uint32_t cmod); 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, - brw_compact_inst *src); -bool brw_try_compact_instruction(struct brw_context *brw, brw_compact_inst *dst, - brw_inst *src); +void brw_uncompact_instruction(const struct brw_device_info *devinfo, + brw_inst *dst, brw_compact_inst *src); +bool brw_try_compact_instruction(const struct brw_device_info *devinfo, + brw_compact_inst *dst, brw_inst *src); -void brw_debug_compact_uncompact(struct brw_context *brw, brw_inst *orig, - brw_inst *uncompacted); +void brw_debug_compact_uncompact(struct brw_context *brw, + brw_inst *orig, brw_inst *uncompacted); static inline int next_offset(const struct brw_device_info *devinfo, void *store, int offset) |