tests: introduce struct buffer for client-helper
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>
Fri, 20 May 2016 14:25:38 +0000 (17:25 +0300)
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>
Wed, 29 Jun 2016 09:39:30 +0000 (12:39 +0300)
commit924cd948ee6d303704812a889c79fee14173b77e
treed8ada5a025c01dfc1a86bac5c89957cadd93f11b
parent37d25bb1e027a4883f9f0385e61bf8b447e6e285
tests: introduce struct buffer for client-helper

We are growing more tests that need to handle buffers, both just images
and wl_buffers. Particularly the screenshooting facility needs these.
Currently everything is in struct surface, which contains more than we
need. It is a bit messy.

Create a new struct buffer to encapsulate the image representation, the
wl_buffer, and enough information to tear it all down (munmap) so we
don't have to leak everything. Some tests might start doing things in
loops, and leaking would accumulate.

Instead of inventing our own image representation, use pixman_image_t.
It is a well-tested library worth using, and we already rely on it in
other places.

This makes the tests depend on Pixman, which requires the fix for
building buffer-count, which would otherwise not find pixman.h.

The new create_shm_buffer_a8r8g8b8() creates an image with an explicit
format, and pixman_image_t keeps track of it. And stride and size and
data. This implementation is still a little hacky due to calling
create_shm_buffer().

A very new thing is buffer_destroy(). Previously we didn't really free
any buffers. It is not a problem when the process will exit soon anyway,
but it may become a problem if tests start iterating things.

Manual memset() on a image is converted to a pixman action, just to show
how to do it properly with pixman.

Stride and pixel format assumptions still linger all around, but those
are for another patch.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Makefile.am
configure.ac
tests/event-test.c
tests/internal-screenshot-test.c
tests/presentation-test.c
tests/viewporter-test.c
tests/weston-test-client-helper.c
tests/weston-test-client-helper.h