change wl_signal_emit_mutable into wl_signal_emit
[platform/core/uifw/libds-tizen.git] / examples / pixman-helper.h
1 #ifndef EXAMPLES_PIXMAN_HELPER_H
2 #define EXAMPLES_PIXMAN_HELPER_H
3
4 #include <pixman.h>
5 #include <libds/buffer.h>
6
7 pixman_image_t *
8 pixman_image_from_buffer(struct ds_buffer *buffer,
9         enum ds_buffer_data_ptr_access_flag access_flag);
10
11 void
12 pixman_image_fill_color(pixman_image_t *image, 
13         uint8_t r, uint8_t g, uint8_t b);
14
15 pixman_color_t *
16 color_rgb888(pixman_color_t *tmp, uint8_t r, uint8_t g, uint8_t b);
17
18 #endif