[Feat] (GLImpl/Sync): manifold for Sync

This commit is contained in:
2025-10-30 22:59:39 +08:00
parent b82c481605
commit e190f3887d
3 changed files with 62 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#pragma once
#include <Includes.h>
namespace MobileGL {
namespace MG_Impl::GLImpl {
GLsync FenceSync(GLenum condition, GLbitfield flags);
GLenum ClientWaitSync(GLsync sync,
GLbitfield flags,
GLuint64 timeout);
void DeleteSync(GLsync sync);
} // namespace MG_Impl::GLImpl
} // namespace MobileGL