eolian: rename is_ref API to is_ptr to match syntax
[platform/upstream/efl.git] / src / modules / evas / engines / software_x11 / evas_xcb_outbuf.h
1 #ifndef EVAS_XCB_OUTBUF_H
2 # define EVAS_XCB_OUTBUF_H
3
4 # include "evas_engine.h"
5
6 void evas_software_xcb_outbuf_init(void);
7 void evas_software_xcb_outbuf_free(Outbuf *buf);
8 Outbuf *evas_software_xcb_outbuf_setup(int w, int h, int rot, Outbuf_Depth depth, xcb_connection_t *conn, xcb_screen_t *screen, xcb_drawable_t draw, xcb_visualtype_t *vis, xcb_colormap_t cmap, int xdepth, Eina_Bool grayscale, int max_colors, xcb_drawable_t mask, Eina_Bool shape_dither, Eina_Bool alpha);
9 void *evas_software_xcb_outbuf_new_region_for_update(Outbuf *buf, int x, int y, int w, int h, int *cx, int *cy, int *cw, int *ch);
10 void evas_software_xcb_outbuf_free_region_for_update(Outbuf *buf, RGBA_Image *update);
11 void evas_software_xcb_outbuf_flush(Outbuf *buf, Tilebuf_Rect *surface_damage, Tilebuf_Rect *buffer_damage, Evas_Render_Mode render_mode);
12 void evas_software_xcb_outbuf_idle_flush(Outbuf *buf);
13 void evas_software_xcb_outbuf_push_updated_region(Outbuf *buf, RGBA_Image *update, int x, int y, int w, int h);
14 void evas_software_xcb_outbuf_reconfigure(Outbuf *buf, int w, int h, int rot, Outbuf_Depth depth);
15 int evas_software_xcb_outbuf_width_get(Outbuf *buf);
16 int evas_software_xcb_outbuf_height_get(Outbuf *buf);
17 Outbuf_Depth evas_software_xcb_outbuf_depth_get(Outbuf *buf);
18 void evas_software_xcb_outbuf_drawable_set(Outbuf *buf, xcb_drawable_t drawable);
19 void evas_software_xcb_outbuf_mask_set(Outbuf *buf, xcb_drawable_t mask);
20 int evas_software_xcb_outbuf_rotation_get(Outbuf *buf);
21 void evas_software_xcb_outbuf_rotation_set(Outbuf *buf, int rotation);
22 Eina_Bool evas_software_xcb_outbuf_alpha_get(Outbuf *buf);
23 void evas_software_xcb_outbuf_debug_set(Outbuf *buf, Eina_Bool debug);
24 void evas_software_xcb_outbuf_debug_show(Outbuf *buf, xcb_drawable_t drawable, int x, int y, int w, int h);
25
26 #endif