diff options
author | Matt Turner <[email protected]> | 2014-05-12 18:16:22 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-05-15 15:45:39 -0700 |
commit | 9b0108ddc1d8e538d642823ef949ea09500ccdec (patch) | |
tree | 9e4af3defb3c7c7ac941ef98c17bd2854dc237ac /src | |
parent | d45fadf11a8dbd9cdf0a1548a38127462b4ceee0 (diff) |
glsl: Add C-callable fprint_ir function.
Acked-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/glsl/ir.h | 3 | ||||
-rw-r--r-- | src/glsl/ir_print_visitor.cpp | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h index 6c7c60a27d9..ef4a12d60ef 100644 --- a/src/glsl/ir.h +++ b/src/glsl/ir.h @@ -2348,6 +2348,9 @@ extern "C" { extern void _mesa_print_ir(FILE *f, struct exec_list *instructions, struct _mesa_glsl_parse_state *state); +extern void +fprint_ir(FILE *f, const void *instruction); + #ifdef __cplusplus } /* extern "C" */ #endif diff --git a/src/glsl/ir_print_visitor.cpp b/src/glsl/ir_print_visitor.cpp index 6f370b9711d..0a7695ae1f6 100644 --- a/src/glsl/ir_print_visitor.cpp +++ b/src/glsl/ir_print_visitor.cpp @@ -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) |