diff options
author | Marek Olšák <[email protected]> | 2016-06-11 17:28:52 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-06-24 12:24:40 +0200 |
commit | cbb5adb90893a7c03f96f72f0665766a4007affd (patch) | |
tree | 3391dfaf4e7929f214fa9a739c64f94abb9f5393 /src/gallium/auxiliary/util/u_queue.h | |
parent | 4a06786efd42abfdb0babf65ed4ac59ae58fe4b5 (diff) |
gallium/u_queue: allow the execute function to differ per job
so that independent types of jobs can use the same queue.
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_queue.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_queue.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/util/u_queue.h b/src/gallium/auxiliary/util/u_queue.h index 750327e0279..f70d6466887 100644 --- a/src/gallium/auxiliary/util/u_queue.h +++ b/src/gallium/auxiliary/util/u_queue.h @@ -44,9 +44,12 @@ struct util_queue_fence { int signalled; }; +typedef void (*util_queue_execute_func)(void *job, int thread_index); + struct util_queue_job { void *job; struct util_queue_fence *fence; + util_queue_execute_func execute; }; /* Put this into your context. */ @@ -62,21 +65,20 @@ struct util_queue { int max_jobs; int write_idx, read_idx; /* ring buffer pointers */ struct util_queue_job *jobs; - void (*execute_job)(void *job, int thread_index); }; bool util_queue_init(struct util_queue *queue, const char *name, unsigned max_jobs, - unsigned num_threads, - void (*execute_job)(void *, int)); + unsigned num_threads); void util_queue_destroy(struct util_queue *queue); void util_queue_fence_init(struct util_queue_fence *fence); void util_queue_fence_destroy(struct util_queue_fence *fence); void util_queue_add_job(struct util_queue *queue, void *job, - struct util_queue_fence *fence); + struct util_queue_fence *fence, + util_queue_execute_func execute); void util_queue_job_wait(struct util_queue_fence *fence); /* util_queue needs to be cleared to zeroes for this to work */ |