diff options
author | Samuel Pitoiset <[email protected]> | 2017-07-18 11:27:00 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-07-31 13:53:39 +0200 |
commit | 667a6e812283fa3f2db84ca06197cdf6f58f0c6d (patch) | |
tree | dd167e653b48bc58897c8603558118edbefb4c02 /src/mesa/main/syncobj.c | |
parent | 81f3a6b29a6eef2b39279524f71ffcdf74fe05e3 (diff) |
mesa: add KHR_no_error support to glDeleteSync()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/syncobj.c')
-rw-r--r-- | src/mesa/main/syncobj.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/syncobj.c b/src/mesa/main/syncobj.c index 6f7bfab42d3..84f920bf147 100644 --- a/src/mesa/main/syncobj.c +++ b/src/mesa/main/syncobj.c @@ -256,6 +256,14 @@ delete_sync(struct gl_context *ctx, GLsync sync, bool no_error) void GLAPIENTRY +_mesa_DeleteSync_no_error(GLsync sync) +{ + GET_CURRENT_CONTEXT(ctx); + delete_sync(ctx, sync, true); +} + + +void GLAPIENTRY _mesa_DeleteSync(GLsync sync) { GET_CURRENT_CONTEXT(ctx); |