Skip to content
  • Pekka Paalanen's avatar
    tests: introduce struct buffer for client-helper · 924cd948
    Pekka Paalanen authored
    
    
    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: default avatarPekka Paalanen <pekka.paalanen@collabora.co.uk>
    Reviewed-by: default avatarDaniel Stone <daniels@collabora.com>
    924cd948