platform: rename create_egl_window to create_egl_surface

Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This commit is contained in:
Jonny Lamb
2015-03-24 13:12:09 +01:00
committed by Pekka Paalanen
parent 759fbf4d0f
commit abff883d2c
6 changed files with 20 additions and 20 deletions
+3 -3
View File
@@ -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);