summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util/u_blitter.h
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2016-08-13 10:35:23 -0400
committerRob Clark <[email protected]>2016-08-16 09:21:13 -0400
commit433e12fea86eee7b88a166637d54b1e87bab0081 (patch)
tree3475fb3ecde7c8d367064af145d12a30e2c4a3c8 /src/gallium/auxiliary/util/u_blitter.h
parent78e3cea4197802253401766fc44362786898e024 (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.h9
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