From: Stanislav Vorobiov Date: Tue, 30 Jul 2013 08:09:52 +0000 (+0400) Subject: YaGL: Remove remaining X11 specific stuff from protocol X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~809^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=369f96920339212247f71c0cb09cbaf48e634ba3;p=sdk%2Femulator%2Fqemu.git YaGL: Remove remaining X11 specific stuff from protocol It's only Display* in eglGetDisplay --- diff --git a/hw/yagl_apis/egl/yagl_host_egl_calls.c b/hw/yagl_apis/egl/yagl_host_egl_calls.c index 56a4d81b1c..b4342f227d 100644 --- a/hw/yagl_apis/egl/yagl_host_egl_calls.c +++ b/hw/yagl_apis/egl/yagl_host_egl_calls.c @@ -357,7 +357,7 @@ bool yagl_host_eglGetError(EGLint* retval) } bool yagl_host_eglGetDisplay(yagl_host_handle* retval, - target_ulong /* Display* */ display_id) + target_ulong /* void* */ display_id) { struct yagl_egl_display *dpy; diff --git a/hw/yagl_apis/egl/yagl_host_egl_calls.h b/hw/yagl_apis/egl/yagl_host_egl_calls.h index fa335e7666..aa8e524271 100644 --- a/hw/yagl_apis/egl/yagl_host_egl_calls.h +++ b/hw/yagl_apis/egl/yagl_host_egl_calls.h @@ -8,7 +8,7 @@ struct yagl_api_ps *yagl_host_egl_process_init(struct yagl_api *api); bool yagl_host_eglGetError(EGLint* retval); bool yagl_host_eglGetDisplay(yagl_host_handle* retval, - target_ulong /* Display* */ display_id); + target_ulong /* void* */ display_id); bool yagl_host_eglInitialize(EGLBoolean* retval, yagl_host_handle dpy_, target_ulong /* EGLint* */ major, diff --git a/hw/yagl_version.h b/hw/yagl_version.h index 9a714878d0..46679fa73d 100644 --- a/hw/yagl_version.h +++ b/hw/yagl_version.h @@ -6,6 +6,6 @@ /* * Whenever protocol changes be sure to bump this. */ -#define YAGL_VERSION 18 +#define YAGL_VERSION 19 #endif