diff options
author | Eric Anholt <[email protected]> | 2010-05-13 17:24:36 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-05-14 11:27:59 -0700 |
commit | 36eda76fea02130d30be6a5f0d83f04698da2853 (patch) | |
tree | e6af4da268da3b71ad4fef99c4271b9d45f6b6eb /src/mesa/drivers/dri/i965/brw_clip.c | |
parent | 562e2d114ec0cba879463980522d1d54af9444e6 (diff) |
i965: Dump out the correct shared function for SEND on Ironlake.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_clip.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_clip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_clip.c b/src/mesa/drivers/dri/i965/brw_clip.c index d08bd232987..49ef859e456 100644 --- a/src/mesa/drivers/dri/i965/brw_clip.c +++ b/src/mesa/drivers/dri/i965/brw_clip.c @@ -129,7 +129,8 @@ static void compile_clip_prog( struct brw_context *brw, if (INTEL_DEBUG & DEBUG_CLIP) { printf("clip:\n"); for (i = 0; i < program_size / sizeof(struct brw_instruction); i++) - brw_disasm(stdout, &((struct brw_instruction *)program)[i]); + brw_disasm(stdout, &((struct brw_instruction *)program)[i], + intel->gen); printf("\n"); } |