diff options
author | Keith Whitwell <[email protected]> | 2009-11-05 15:34:18 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-05 15:34:18 +0000 |
commit | aa9773d056a8799050304f75c1bf4c1f470e7e53 (patch) | |
tree | 0e89b092ad7187b6224083f36ed2c3b33dbbea05 /src/gallium/drivers/i965/brw_context.h | |
parent | 203adb8ea68da0fbb2e4643e36e273f31c29980f (diff) |
i965g: disassemble more than one instruction at a time
Diffstat (limited to 'src/gallium/drivers/i965/brw_context.h')
-rw-r--r-- | src/gallium/drivers/i965/brw_context.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_context.h b/src/gallium/drivers/i965/brw_context.h index 580251d2f12..e0c1c57ed77 100644 --- a/src/gallium/drivers/i965/brw_context.h +++ b/src/gallium/drivers/i965/brw_context.h @@ -794,7 +794,9 @@ int brw_upload_urb_fence(struct brw_context *brw); int brw_upload_cs_urb_state(struct brw_context *brw); /* brw_disasm.c */ -int brw_disasm (FILE *file, struct brw_instruction *inst); +int brw_disasm (FILE *file, + const struct brw_instruction *inst, + unsigned count); /*====================================================================== * Inline conversion functions. These are better-typed than the |