aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/software_x11/evas_xcb_outbuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/evas/src/modules/engines/software_x11/evas_xcb_outbuf.h')
-rw-r--r--libraries/evas/src/modules/engines/software_x11/evas_xcb_outbuf.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/libraries/evas/src/modules/engines/software_x11/evas_xcb_outbuf.h b/libraries/evas/src/modules/engines/software_x11/evas_xcb_outbuf.h
new file mode 100644
index 0000000..b711848
--- /dev/null
+++ b/libraries/evas/src/modules/engines/software_x11/evas_xcb_outbuf.h
@@ -0,0 +1,30 @@
1#ifndef EVAS_XCB_OUTBUF_H
2# define EVAS_XCB_OUTBUF_H
3
4# include "evas_engine.h"
5
6void evas_software_xcb_outbuf_init(void);
7void evas_software_xcb_outbuf_free(Outbuf *buf);
8Outbuf *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);
9RGBA_Image *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);
10void evas_software_xcb_outbuf_free_region_for_update(Outbuf *buf, RGBA_Image *update);
11void evas_software_xcb_outbuf_flush(Outbuf *buf);
12void evas_software_xcb_outbuf_idle_flush(Outbuf *buf);
13void evas_software_xcb_outbuf_push_updated_region(Outbuf *buf, RGBA_Image *update, int x, int y, int w, int h);
14void evas_software_xcb_outbuf_reconfigure(Outbuf *buf, int w, int h, int rot, Outbuf_Depth depth);
15int evas_software_xcb_outbuf_width_get(Outbuf *buf);
16int evas_software_xcb_outbuf_height_get(Outbuf *buf);
17Outbuf_Depth evas_software_xcb_outbuf_depth_get(Outbuf *buf);
18void evas_software_xcb_outbuf_drawable_set(Outbuf *buf, xcb_drawable_t drawable);
19void evas_software_xcb_outbuf_mask_set(Outbuf *buf, xcb_drawable_t mask);
20int evas_software_xcb_outbuf_rotation_get(Outbuf *buf);
21void evas_software_xcb_outbuf_rotation_set(Outbuf *buf, int rotation);
22Eina_Bool evas_software_xcb_outbuf_alpha_get(Outbuf *buf);
23void evas_software_xcb_outbuf_debug_set(Outbuf *buf, Eina_Bool debug);
24void evas_software_xcb_outbuf_debug_show(Outbuf *buf, xcb_drawable_t drawable, int x, int y, int w, int h);
25
26# ifdef EVAS_FRAME_QUEUING
27void evas_software_xcb_outbuf_priv_set(Outbuf *buf, void *cur, void *prev);
28# endif
29
30#endif