mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 20:50:09 +01:00
egl: fix helper function name
I introduced this code last month, but didn't follow the naming
convention. Fix this.
Fixes: 0a606a400f ("egl: add eglSwapBuffersWithDamageKHR")
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Signed-off-by: Eric Engestrom <eric@engestrom.ch>
This commit is contained in:
parent
8b780a543a
commit
9702f91366
1 changed files with 4 additions and 4 deletions
|
|
@ -1195,8 +1195,8 @@ eglSwapBuffers(EGLDisplay dpy, EGLSurface surface)
|
|||
|
||||
|
||||
static EGLBoolean
|
||||
eglSwapBuffersWithDamageCommon(_EGLDisplay *disp, _EGLSurface *surf,
|
||||
EGLint *rects, EGLint n_rects)
|
||||
_eglSwapBuffersWithDamageCommon(_EGLDisplay *disp, _EGLSurface *surf,
|
||||
EGLint *rects, EGLint n_rects)
|
||||
{
|
||||
_EGLContext *ctx = _eglGetCurrentContext();
|
||||
_EGLDriver *drv;
|
||||
|
|
@ -1224,7 +1224,7 @@ eglSwapBuffersWithDamageEXT(EGLDisplay dpy, EGLSurface surface,
|
|||
_EGLDisplay *disp = _eglLockDisplay(dpy);
|
||||
_EGLSurface *surf = _eglLookupSurface(surface, disp);
|
||||
_EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
|
||||
return eglSwapBuffersWithDamageCommon(disp, surf, rects, n_rects);
|
||||
return _eglSwapBuffersWithDamageCommon(disp, surf, rects, n_rects);
|
||||
}
|
||||
|
||||
static EGLBoolean EGLAPIENTRY
|
||||
|
|
@ -1234,7 +1234,7 @@ eglSwapBuffersWithDamageKHR(EGLDisplay dpy, EGLSurface surface,
|
|||
_EGLDisplay *disp = _eglLockDisplay(dpy);
|
||||
_EGLSurface *surf = _eglLookupSurface(surface, disp);
|
||||
_EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
|
||||
return eglSwapBuffersWithDamageCommon(disp, surf, rects, n_rects);
|
||||
return _eglSwapBuffersWithDamageCommon(disp, surf, rects, n_rects);
|
||||
}
|
||||
|
||||
EGLBoolean EGLAPIENTRY
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue