[PATCH weston 10/10] platform: rename create_egl_window to create_egl_surface

Jonny Lamb jonny.lamb at collabora.co.uk
Tue Mar 24 05:12:09 PDT 2015


Reviewed-by: Pekka Paalanen <pekka.paalanen at collabora.co.uk>
---
 clients/nested-client.c   |  4 ++--
 clients/simple-egl.c      |  6 +++---
 clients/subsurfaces.c     |  6 +++---
 clients/window.c          |  6 +++---
 shared/platform.h         | 12 ++++++------
 tests/buffer-count-test.c |  6 +++---
 6 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/clients/nested-client.c b/clients/nested-client.c
index 200543c..615f589 100644
--- a/clients/nested-client.c
+++ b/clients/nested-client.c
@@ -309,8 +309,8 @@ nested_client_create(void)
 	client->native = wl_egl_window_create(client->surface,
 					      client->width, client->height);
 
-	client->egl_surface = weston_platform_create_egl_window (client->egl_display,
-								 client->egl_config,
+	client->egl_surface = weston_platform_create_egl_surface(client->egl_display,
+								 nclient->egl_config,
 								 client->native, NULL);
 
 	eglMakeCurrent(client->egl_display, client->egl_surface,
diff --git a/clients/simple-egl.c b/clients/simple-egl.c
index 1a0724d..c6a95eb 100644
--- a/clients/simple-egl.c
+++ b/clients/simple-egl.c
@@ -386,9 +386,9 @@ create_surface(struct window *window)
 				     window->geometry.width,
 				     window->geometry.height);
 	window->egl_surface =
-		weston_platform_create_egl_window(display->egl.dpy,
-						  display->egl.conf,
-						  window->native, NULL);
+		weston_platform_create_egl_surface(display->egl.dpy,
+						   display->egl.conf,
+						   window->native, NULL);
 
 
 	if (display->shell) {
diff --git a/clients/subsurfaces.c b/clients/subsurfaces.c
index 130fe4c..663e1e1 100644
--- a/clients/subsurfaces.c
+++ b/clients/subsurfaces.c
@@ -422,9 +422,9 @@ triangle_create_egl_surface(struct triangle *tri, int width, int height)
 
 	tri->wl_surface = widget_get_wl_surface(tri->widget);
 	tri->egl_window = wl_egl_window_create(tri->wl_surface, width, height);
-	tri->egl_surface = weston_platform_create_egl_window(tri->egl->dpy,
-							     tri->egl->conf,
-							     tri->egl_window, NULL);
+	tri->egl_surface = weston_platform_create_egl_surface(tri->egl->dpy,
+							      tri->egl->conf,
+							      tri->egl_window, NULL);
 
 	ret = eglMakeCurrent(tri->egl->dpy, tri->egl_surface,
 			     tri->egl_surface, tri->egl->ctx);
diff --git a/clients/window.c b/clients/window.c
index 62b5185..6703462 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -641,9 +641,9 @@ egl_window_surface_create(struct display *display,
 						   rectangle->height);
 
 	surface->egl_surface =
-		weston_platform_create_egl_window(display->dpy,
-						  display->argb_config,
-						  surface->egl_window, NULL);
+		weston_platform_create_egl_surface(display->dpy,
+						   display->argb_config,
+						   surface->egl_window, NULL);
 
 	surface->cairo_surface =
 		cairo_gl_surface_create_for_egl(display->argb_device,
diff --git a/shared/platform.h b/shared/platform.h
index be6d8e6..c099188 100644
--- a/shared/platform.h
+++ b/shared/platform.h
@@ -77,9 +77,9 @@ weston_platform_get_egl_display(EGLenum platform, void *native_display,
 }
 
 static inline EGLSurface
-weston_platform_create_egl_window(EGLDisplay dpy, EGLConfig config,
-				  void *native_window,
-				  const EGLint *attrib_list)
+weston_platform_create_egl_surface(EGLDisplay dpy, EGLConfig config,
+				   void *native_window,
+				   const EGLint *attrib_list)
 {
 	static PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC
 		create_platform_window = NULL;
@@ -109,9 +109,9 @@ weston_platform_get_egl_display(void *platform, void *native_display,
 }
 
 static inline void *
-weston_platform_create_egl_window(void *dpy, void *config,
-				  void *native_window,
-				  const int *attrib_list)
+weston_platform_create_egl_surface(void *dpy, void *config,
+				   void *native_window,
+				   const int *attrib_list)
 {
 	return NULL;
 }
diff --git a/tests/buffer-count-test.c b/tests/buffer-count-test.c
index 23cbc6e..31d78c2 100644
--- a/tests/buffer-count-test.c
+++ b/tests/buffer-count-test.c
@@ -95,9 +95,9 @@ init_egl(struct test_data *test_data)
 				     surface->width,
 				     surface->height);
 	test_data->egl_surface =
-		weston_platform_create_egl_window(test_data->egl_dpy,
-						  test_data->egl_conf,
-						  native_window, NULL);
+		weston_platform_create_egl_surface(test_data->egl_dpy,
+						   test_data->egl_conf,
+						   native_window, NULL);
 
 	ret = eglMakeCurrent(test_data->egl_dpy, test_data->egl_surface,
 			     test_data->egl_surface, test_data->egl_ctx);
-- 
2.1.4



More information about the wayland-devel mailing list