summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/radeonsi/si_compute.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_compute.h')
-rw-r--r--src/gallium/drivers/radeonsi/si_compute.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_compute.h b/src/gallium/drivers/radeonsi/si_compute.h
index 268817b23a6..c19b701fc71 100644
--- a/src/gallium/drivers/radeonsi/si_compute.h
+++ b/src/gallium/drivers/radeonsi/si_compute.h
@@ -24,11 +24,14 @@
#ifndef SI_COMPUTE_H
#define SI_COMPUTE_H
+#include "util/u_inlines.h"
+
#include "si_shader.h"
#define MAX_GLOBAL_BUFFERS 22
struct si_compute {
+ struct pipe_reference reference;
struct si_screen *screen;
struct tgsi_token *tokens;
struct util_queue_fence ready;
@@ -53,4 +56,15 @@ struct si_compute {
unsigned uses_bindless_images:1;
};
+void si_destroy_compute(struct si_compute *program);
+
+static inline void
+si_compute_reference(struct si_compute **dst, struct si_compute *src)
+{
+ if (pipe_reference(&(*dst)->reference, &src->reference))
+ si_destroy_compute(*dst);
+
+ *dst = src;
+}
+
#endif /* SI_COMPUTE_H */