tests: ivi_layout-test to use create_shm_buffer_a8r8g8b8()

This removes the uses of create_shm_buffer() from this test.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Reviewed-by: Daniel Stone <daniels@collabora.com>
This commit is contained in:
Pekka Paalanen 2016-05-20 18:01:05 +03:00
parent 95e2872e9c
commit 41d5231f03
1 changed files with 5 additions and 5 deletions

View File

@ -395,7 +395,7 @@ TEST(ivi_layout_surface_configure_notification)
struct client *client;
struct runner *runner;
struct ivi_window *wind;
struct wl_buffer *buffer;
struct buffer *buffer;
client = create_client();
runner = client_create_runner(client);
@ -404,21 +404,21 @@ TEST(ivi_layout_surface_configure_notification)
wind = client_create_ivi_window(client, IVI_TEST_SURFACE_ID(0));
buffer = create_shm_buffer(client, 200, 300, NULL);
buffer = create_shm_buffer_a8r8g8b8(client, 200, 300);
wl_surface_attach(wind->wl_surface, buffer, 0, 0);
wl_surface_attach(wind->wl_surface, buffer->proxy, 0, 0);
wl_surface_damage(wind->wl_surface, 0, 0, 20, 30);
wl_surface_commit(wind->wl_surface);
runner_run(runner, "surface_configure_notification_p2");
wl_surface_attach(wind->wl_surface, buffer, 0, 0);
wl_surface_attach(wind->wl_surface, buffer->proxy, 0, 0);
wl_surface_damage(wind->wl_surface, 0, 0, 40, 50);
wl_surface_commit(wind->wl_surface);
runner_run(runner, "surface_configure_notification_p3");
wl_buffer_destroy(buffer);
buffer_destroy(buffer);
ivi_window_destroy(wind);
runner_destroy(runner);
}