tests: Handle screenshot done event in weston-test

Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
Reviewed-By: Derek Foreman <derekf@osg.samsung.com>
This commit is contained in:
Bryce Harrington 2015-04-23 16:33:49 -07:00
parent f280d11274
commit 692275f91f
2 changed files with 11 additions and 0 deletions

View File

@ -446,9 +446,19 @@ test_handle_n_egl_buffers(void *data, struct weston_test *weston_test, uint32_t
test->n_egl_buffers = n;
}
static void
test_handle_capture_screenshot_done(void *data, struct weston_test *weston_test)
{
struct test *test = data;
printf("Screenshot has been captured\n");
test->buffer_copy_done = 1;
}
static const struct weston_test_listener test_listener = {
test_handle_pointer_position,
test_handle_n_egl_buffers,
test_handle_capture_screenshot_done,
};
static void

View File

@ -64,6 +64,7 @@ struct test {
int pointer_x;
int pointer_y;
uint32_t n_egl_buffers;
int buffer_copy_done;
};
struct input {