Commit 234e2fc5 by Nicolas Capens

Fix function signature for Windows.

Change-Id: I604b2f755ece6a0a411562e9229a39040b3b0153 Reviewed-on: https://swiftshader-review.googlesource.com/4112Reviewed-by: 's avatarAlexis Hétu <sugoi@google.com> Reviewed-by: 's avatarNicolas Capens <capn@google.com> Tested-by: 's avatarNicolas Capens <capn@google.com>
parent 43da5689
......@@ -544,7 +544,7 @@ EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR ima
return egl::DestroyImageKHR(dpy, image);
}
EGLAPI EGLBoolean eglSwapBuffersWithDamageKHR(EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects)
EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageKHR(EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects)
{
return egl::SwapBuffersWithDamageKHR(dpy, surface, rects, n_rects);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment