diff options
author | Dave Airlie <[email protected]> | 2010-12-31 12:24:35 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-01-09 17:21:10 +1000 |
commit | 3ee8d13c0049e6a9490054ea46963bb6f9f18905 (patch) | |
tree | 94b267c11689f3b086dd825b034b657581b7840d /src/gallium/drivers/i965/brw_disasm.h | |
parent | 9562284114eee8b98b46ac7126f6af83df385c7c (diff) |
i965g: update disassembler code from classic.
still a bit of work to do, the winsys gen setting is a bit of a hack.
Diffstat (limited to 'src/gallium/drivers/i965/brw_disasm.h')
-rw-r--r-- | src/gallium/drivers/i965/brw_disasm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/i965/brw_disasm.h b/src/gallium/drivers/i965/brw_disasm.h index ba5b109c483..ce451ed5a06 100644 --- a/src/gallium/drivers/i965/brw_disasm.h +++ b/src/gallium/drivers/i965/brw_disasm.h @@ -27,10 +27,10 @@ struct brw_instruction; -int brw_disasm_insn (FILE *file, const struct brw_instruction *inst); +int brw_disasm_insn (FILE *file, struct brw_instruction *inst, int gen); int brw_disasm (FILE *file, - const struct brw_instruction *inst, - unsigned count); + struct brw_instruction *inst, + unsigned count, int gen); #endif |