diff options
author | Nicolai Hähnle <[email protected]> | 2017-08-04 16:47:48 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-08-22 09:50:53 +0200 |
commit | 4bbf6ded20522028262ab17f56603b904d2f8b85 (patch) | |
tree | 658ab8338eea65e7ec40a783358bd9af77518ccd /src/gallium/drivers/radeonsi/si_compute.h | |
parent | bbaad18c04ad31eaaa945cf644f5f9693c2e1f5e (diff) |
radeonsi: add reference count to si_compute
To allow keep-alive for deferred logging.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_compute.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_compute.h | 14 |
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 */ |