glsl: Add C-callable fprint_ir function.

Acked-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Matt Turner
2014-05-12 18:16:22 -07:00
parent d45fadf11a
commit 9b0108ddc1
2 changed files with 10 additions and 0 deletions

View File

@@ -76,6 +76,13 @@ _mesa_print_ir(FILE *f, exec_list *instructions,
fprintf(f, "\n)");
}
void
fprint_ir(FILE *f, const void *instruction)
{
const ir_instruction *ir = (const ir_instruction *)instruction;
ir->fprint(f);
}
} /* extern "C" */
ir_print_visitor::ir_print_visitor(FILE *f)