aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_fence.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2015-06-26 16:34:31 +0200
committerMarek Olšák <[email protected]>2015-07-05 15:08:59 +0200
commit5a69929683b15d48e4f2fd47e2c816e716ab60ef (patch)
tree5d8a5cba2b329dc3ad476f0269dea3db50977fde /src/gallium/drivers/softpipe/sp_fence.c
parentbd214f030f1cb102a7fe41f40f140d4de2b304c0 (diff)
gallium: remove redundant pipe_context::fence_signalled
fence_finish(timeout=0) does the same thing Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_fence.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_fence.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gallium/drivers/softpipe/sp_fence.c b/src/gallium/drivers/softpipe/sp_fence.c
index c2897ed1ef8..6168236ec96 100644
--- a/src/gallium/drivers/softpipe/sp_fence.c
+++ b/src/gallium/drivers/softpipe/sp_fence.c
@@ -41,15 +41,6 @@ softpipe_fence_reference(struct pipe_screen *screen,
static boolean
-softpipe_fence_signalled(struct pipe_screen *screen,
- struct pipe_fence_handle *fence)
-{
- assert(fence);
- return TRUE;
-}
-
-
-static boolean
softpipe_fence_finish(struct pipe_screen *screen,
struct pipe_fence_handle *fence,
uint64_t timeout)
@@ -64,5 +55,4 @@ softpipe_init_screen_fence_funcs(struct pipe_screen *screen)
{
screen->fence_reference = softpipe_fence_reference;
screen->fence_finish = softpipe_fence_finish;
- screen->fence_signalled = softpipe_fence_signalled;
}