[Feat] (MG_Impl/EGLImpl): Implement eglQueryString

This commit is contained in:
2026-01-14 22:50:40 +08:00
parent c7ca2fecf2
commit 97cbb35dbd
4 changed files with 13 additions and 0 deletions
@@ -81,6 +81,10 @@ MOBILEGL_EGL_API EGLBoolean eglQuerySurface(EGLDisplay display, EGLSurface surfa
return MobileGL::MG_Impl::EGLImpl::QuerySurface(display, surface, attribute, value);
}
MOBILEGL_EGL_API char const * eglQueryString(EGLDisplay display, EGLint name) {
return MobileGL::MG_Impl::EGLImpl::QueryString(display, name);
}
MOBILEGL_EGL_API EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval) {
return MobileGL::MG_Impl::EGLImpl::SwapInterval(dpy, interval);
}