diff options
author | Rob Clark <[email protected]> | 2016-08-13 10:35:23 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-08-16 09:21:13 -0400 |
commit | 433e12fea86eee7b88a166637d54b1e87bab0081 (patch) | |
tree | 3475fb3ecde7c8d367064af145d12a30e2c4a3c8 /src/gallium/auxiliary/util/u_blitter.h | |
parent | 78e3cea4197802253401766fc44362786898e024 (diff) |
gallium/u_blitter: export some functions
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_blitter.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_blitter.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_blitter.h b/src/gallium/auxiliary/util/u_blitter.h index b2135a354c1..06e21e64ba2 100644 --- a/src/gallium/auxiliary/util/u_blitter.h +++ b/src/gallium/auxiliary/util/u_blitter.h @@ -528,6 +528,15 @@ util_blitter_save_render_condition(struct blitter_context *blitter, blitter->saved_render_cond_cond = condition; } +void util_blitter_set_running_flag(struct blitter_context *blitter); +void util_blitter_unset_running_flag(struct blitter_context *blitter); + +void util_blitter_restore_vertex_states(struct blitter_context *blitter); +void util_blitter_restore_fragment_states(struct blitter_context *blitter); +void util_blitter_restore_render_cond(struct blitter_context *blitter); +void util_blitter_restore_fb_state(struct blitter_context *blitter); +void util_blitter_restore_textures(struct blitter_context *blitter); + #ifdef __cplusplus } #endif |