summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/syncobj.c
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2017-07-18 11:27:00 +0200
committerSamuel Pitoiset <[email protected]>2017-07-31 13:53:39 +0200
commit667a6e812283fa3f2db84ca06197cdf6f58f0c6d (patch)
treedd167e653b48bc58897c8603558118edbefb4c02 /src/mesa/main/syncobj.c
parent81f3a6b29a6eef2b39279524f71ffcdf74fe05e3 (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.c8
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);