mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 06:40:11 +01:00
turnip: delete unused tu_fence_signal function
Signed-off-by: Jonathan Marek <jonathan@marek.ca> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6683>
This commit is contained in:
parent
9e13a16c97
commit
ec4fe92c83
2 changed files with 0 additions and 12 deletions
|
|
@ -137,16 +137,6 @@ tu_fence_copy(struct tu_fence *fence, const struct tu_fence *src)
|
|||
tu_fence_update_fd(fence, fd);
|
||||
}
|
||||
|
||||
/**
|
||||
* Signal a fence. \a fence must be in the reset state.
|
||||
*/
|
||||
void
|
||||
tu_fence_signal(struct tu_fence *fence)
|
||||
{
|
||||
assert(tu_fence_get_state(fence) == TU_FENCE_STATE_RESET);
|
||||
tu_fence_set_state(fence, TU_FENCE_STATE_SIGNALED, -1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Wait until a fence is idle (i.e., not pending).
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -305,8 +305,6 @@ tu_fence_update_fd(struct tu_fence *fence, int fd);
|
|||
void
|
||||
tu_fence_copy(struct tu_fence *fence, const struct tu_fence *src);
|
||||
void
|
||||
tu_fence_signal(struct tu_fence *fence);
|
||||
void
|
||||
tu_fence_wait_idle(struct tu_fence *fence);
|
||||
|
||||
struct tu_queue
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue