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:
Jonathan Marek 2020-09-10 15:48:02 -04:00 committed by Marge Bot
parent 9e13a16c97
commit ec4fe92c83
2 changed files with 0 additions and 12 deletions

View file

@ -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).
*/

View file

@ -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