From 0fd6ee7be2976c8f0bf36d2274a92ce76ad9d773 Mon Sep 17 00:00:00 2001 From: Quanxian Wang Date: Fri, 22 Nov 2013 11:54:25 +0800 Subject: [PATCH] Make update when eglQueryWaylandBufferWL interface is changed in mesa BugFix TIVI-2180: mesa update caused webkit2-efl to fail to build. Related commits: https://review.tizen.org/gerrit/#/c/12578 Change-Id: I73d43bd209cb3ab9ac1a489ec08e6aa32a4792d8 Signed-off-by: Quanxian Wang --- Source/WebCore/platform/graphics/surfaces/egl/EGLHelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/WebCore/platform/graphics/surfaces/egl/EGLHelper.cpp b/Source/WebCore/platform/graphics/surfaces/egl/EGLHelper.cpp index 8f3fd2f..63dea11 100644 --- a/Source/WebCore/platform/graphics/surfaces/egl/EGLHelper.cpp +++ b/Source/WebCore/platform/graphics/surfaces/egl/EGLHelper.cpp @@ -161,7 +161,7 @@ GLint EGLHelper::queryWaylandBufferWLFormat(void *buffer, EGLDisplay eglDisplay) EGLint format = -1; if (eglQueryWaylandBufferWL) { - eglQueryWaylandBufferWL(display, (struct wl_buffer*)buffer, EGL_TEXTURE_FORMAT, &format); + eglQueryWaylandBufferWL(display, (struct wl_resource*)buffer, EGL_TEXTURE_FORMAT, &format); } return format; -- 2.7.4