From 2de9912ac09059dfdafddcaae2a095356c77c89d Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Mon, 19 Jul 2021 13:32:56 +1000 Subject: [PATCH] [client] egl: EGL_KHR_swap_buffers_with_damage returns EGLBoolean --- client/include/egl_dynprocs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/include/egl_dynprocs.h b/client/include/egl_dynprocs.h index c3d90aef..33ee0fb7 100644 --- a/client/include/egl_dynprocs.h +++ b/client/include/egl_dynprocs.h @@ -28,7 +28,7 @@ typedef EGLDisplay (*eglGetPlatformDisplayEXT_t)(EGLenum platform, void *native_display, const EGLint *attrib_list); -typedef void (*eglSwapBuffersWithDamageKHR_t)(EGLDisplay dpy, +typedef EGLBoolean (*eglSwapBuffersWithDamageKHR_t)(EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); typedef void (*glEGLImageTargetTexture2DOES_t)(GLenum target, GLeglImageOES image);