diff options
author | Jason Ekstrand <[email protected]> | 2015-04-15 13:46:21 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-04-22 16:00:32 -0700 |
commit | 639314d40e78b5b56c3fc840b2f416e7fc519a4d (patch) | |
tree | d1a6c510efaa02ab9328d974bdc88f78955f7f79 /src/mesa/drivers/dri/i965/brw_eu.h | |
parent | c3e5f32840fbc7b44a15b2c7c7d7299cbd6d332a (diff) |
i965: Make the disassembler take a device_info instead of a context
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index e65c270ef02..9b516917ffd 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -112,7 +112,7 @@ void brw_set_default_acc_write_control(struct brw_compile *p, unsigned value); void brw_init_compile(struct brw_context *, struct brw_compile *p, void *mem_ctx); -void brw_disassemble(struct brw_context *brw, void *assembly, +void brw_disassemble(const struct brw_device_info *devinfo, void *assembly, int start, int end, FILE *out); const unsigned *brw_get_program( struct brw_compile *p, unsigned *sz ); @@ -471,7 +471,7 @@ void brw_uncompact_instruction(const struct brw_device_info *devinfo, 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, +void brw_debug_compact_uncompact(const struct brw_device_info *devinfo, brw_inst *orig, brw_inst *uncompacted); static inline int |