diff options
author | Eric Anholt <[email protected]> | 2010-05-13 17:14:21 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-05-14 11:27:59 -0700 |
commit | 562e2d114ec0cba879463980522d1d54af9444e6 (patch) | |
tree | 77b8aa13e528196c86f402dd770e58be5e534a42 /src/mesa/drivers/dri/i965 | |
parent | 7554b83a21bd62b20df5a7327b69f08108ac9ab6 (diff) |
i965: Support INTEL_DEBUG=clip to dump the clip program.
Diffstat (limited to 'src/mesa/drivers/dri/i965')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_clip.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_clip.c b/src/mesa/drivers/dri/i965/brw_clip.c index 029a16500b5..d08bd232987 100644 --- a/src/mesa/drivers/dri/i965/brw_clip.c +++ b/src/mesa/drivers/dri/i965/brw_clip.c @@ -42,7 +42,6 @@ #include "brw_state.h" #include "brw_clip.h" - #define FRONT_UNFILLED_BIT 0x1 #define BACK_UNFILLED_BIT 0x2 @@ -127,6 +126,13 @@ static void compile_clip_prog( struct brw_context *brw, */ program = brw_get_program(&c.func, &program_size); + 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]); + printf("\n"); + } + /* Upload */ dri_bo_unreference(brw->clip.prog_bo); |