diff options
author | Eric Anholt <[email protected]> | 2013-01-17 16:39:27 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-01-21 21:26:48 -0800 |
commit | ab4c549378cc2e355e24b8cd3a4cbf28434fd6a8 (patch) | |
tree | 6adae3d31ee195498f7ea59e85d55f4d62692176 /src/mesa/main/syncobj.c | |
parent | 7820e2dd8dac0978b3f4f94cc3aa0144eb19032b (diff) |
mesa: Initially populate the display list with the exec list.
This cuts out a ton of code to make functions not set to a save_ variant
match.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/syncobj.c')
-rw-r--r-- | src/mesa/main/syncobj.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/mesa/main/syncobj.c b/src/mesa/main/syncobj.c index 6de0adaad21..020fa1d7ae9 100644 --- a/src/mesa/main/syncobj.c +++ b/src/mesa/main/syncobj.c @@ -141,20 +141,6 @@ _mesa_init_sync_object_functions(struct dd_function_table *driver) driver->ServerWaitSync = _mesa_wait_sync; } - -void -_mesa_init_sync_dispatch(struct _glapi_table *disp) -{ - SET_IsSync(disp, _mesa_IsSync); - SET_DeleteSync(disp, _mesa_DeleteSync); - SET_FenceSync(disp, _mesa_FenceSync); - SET_ClientWaitSync(disp, _mesa_ClientWaitSync); - SET_WaitSync(disp, _mesa_WaitSync); - SET_GetInteger64v(disp, _mesa_GetInteger64v); - SET_GetSynciv(disp, _mesa_GetSynciv); -} - - /** * Allocate/init the context state related to sync objects. */ |