summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/llvmpipe
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-03-06 10:41:39 +1100
committerTimothy Arceri <[email protected]>2017-03-07 09:07:33 +1100
commite92293a601bbc141bb85f88f962264fa0b1da916 (patch)
tree6a1be68109f4098b9755c0ad3b08cecd83562b7e /src/gallium/drivers/llvmpipe
parente5375ba028c8ca48b11b86068efb65c4e03153eb (diff)
gallium/util: replace pipe_condvar with cnd_t
pipe_condvar was made unnecessary with fd33a6bcd7f12. Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_fence.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_fence.h b/src/gallium/drivers/llvmpipe/lp_fence.h
index 4fc0801a6f0..b72026492c6 100644
--- a/src/gallium/drivers/llvmpipe/lp_fence.h
+++ b/src/gallium/drivers/llvmpipe/lp_fence.h
@@ -44,7 +44,7 @@ struct lp_fence
unsigned id;
mtx_t mutex;
- pipe_condvar signalled;
+ cnd_t signalled;
boolean issued;
unsigned rank;