diff options
author | Eric Anholt <[email protected]> | 2010-05-17 16:48:16 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-05-17 17:47:07 -0700 |
commit | b8b2670fef4790d650939fece8c7e6c7b76c3171 (patch) | |
tree | 8abb202fa1f0da7080f4bf54385c797357494cba /src/mesa/drivers/dri/i965/brw_sf.c | |
parent | b3f625f5e49d4f713caf401daf32e7f8843bad24 (diff) |
i965: Add SF program disasm under INTEL_DEBUG=sf.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_sf.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_sf.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_sf.c b/src/mesa/drivers/dri/i965/brw_sf.c index 57d1c29ade1..e05a038d483 100644 --- a/src/mesa/drivers/dri/i965/brw_sf.c +++ b/src/mesa/drivers/dri/i965/brw_sf.c @@ -46,6 +46,7 @@ static void compile_sf_prog( struct brw_context *brw, struct brw_sf_prog_key *key ) { + struct intel_context *intel = &brw->intel; struct brw_sf_compile c; const GLuint *program; GLuint program_size; @@ -107,6 +108,14 @@ static void compile_sf_prog( struct brw_context *brw, */ program = brw_get_program(&c.func, &program_size); + if (INTEL_DEBUG & DEBUG_SF) { + printf("sf:\n"); + for (i = 0; i < program_size / sizeof(struct brw_instruction); i++) + brw_disasm(stdout, &((struct brw_instruction *)program)[i], + intel->gen); + printf("\n"); + } + /* Upload */ dri_bo_unreference(brw->sf.prog_bo); |