YaGL: Remove remaining X11 specific stuff from protocol
authorStanislav Vorobiov <s.vorobiov@samsung.com>
Tue, 30 Jul 2013 08:09:52 +0000 (12:09 +0400)
committerStanislav Vorobiov <s.vorobiov@samsung.com>
Wed, 31 Jul 2013 11:48:03 +0000 (15:48 +0400)
It's only Display* in eglGetDisplay

hw/yagl_apis/egl/yagl_host_egl_calls.c
hw/yagl_apis/egl/yagl_host_egl_calls.h
hw/yagl_version.h

index 56a4d81b1cc1f59ede4b7d188da1a8cf9fb7d726..b4342f227d03554dd90c0e7cfda12969120467a1 100644 (file)
@@ -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;
 
index fa335e76669d8b8b5294f763640fe45193aa4819..aa8e524271bb642c32e38b8b0547129e6fc0a837 100644 (file)
@@ -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,
index 9a714878d09e40e884aeb18dc4d874279cf08f76..46679fa73df730a71c17fd78e39f7ac2f1673fcf 100644 (file)
@@ -6,6 +6,6 @@
 /*
  * Whenever protocol changes be sure to bump this.
  */
-#define YAGL_VERSION 18
+#define YAGL_VERSION 19
 
 #endif