diff options
author | Marek Olšák <[email protected]> | 2012-09-12 22:18:37 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-09-30 18:57:56 +0200 |
commit | ab3070c5fa6d32521c867887288c30231ec5a688 (patch) | |
tree | f0d6025a95cc03e4fdad8c66cb14aa109e61adf1 /src/gallium/auxiliary/util/u_dump.h | |
parent | cecfb452ab941cd3b67b871758dfa850788a2cdc (diff) |
gallium: add helpers for dumping pipe_box and pipe_blit_info
Tested-by: Michel Dänzer <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_dump.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_dump.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_dump.h b/src/gallium/auxiliary/util/u_dump.h index 87d84bead97..71750a635d3 100644 --- a/src/gallium/auxiliary/util/u_dump.h +++ b/src/gallium/auxiliary/util/u_dump.h @@ -165,6 +165,12 @@ util_dump_vertex_element(FILE *stream, void util_dump_draw_info(FILE *stream, const struct pipe_draw_info *state); +void +util_dump_box(FILE *stream, const struct pipe_box *box); + +void +util_dump_blit_info(FILE *stream, const struct pipe_blit_info *info); + /* FIXME: Move the other debug_dump_xxx functions out of u_debug.h into here. */ |