aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/software_x11/evas_xcb_buffer.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 17:29:19 +1000
committerDavid Walter Seikel2013-01-13 17:29:19 +1000
commit07274513e984f0b5544586c74508ccd16e7dcafa (patch)
treeb32ff2a9136fbc1a4a6a0ed1e4d79cde0f5f16d9 /libraries/evas/src/modules/engines/software_x11/evas_xcb_buffer.h
parentAdded Irrlicht 1.8, but without all the Windows binaries. (diff)
downloadSledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.zip
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.gz
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.bz2
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.xz
Remove EFL, since it's been released now.
Diffstat (limited to 'libraries/evas/src/modules/engines/software_x11/evas_xcb_buffer.h')
-rw-r--r--libraries/evas/src/modules/engines/software_x11/evas_xcb_buffer.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/libraries/evas/src/modules/engines/software_x11/evas_xcb_buffer.h b/libraries/evas/src/modules/engines/software_x11/evas_xcb_buffer.h
deleted file mode 100644
index dc1f0b4..0000000
--- a/libraries/evas/src/modules/engines/software_x11/evas_xcb_buffer.h
+++ /dev/null
@@ -1,30 +0,0 @@
1#ifndef EVAS_XCB_BUFFER_H
2# define EVAS_XCB_BUFFER_H
3
4# include "evas_engine.h"
5
6typedef struct _Xcb_Output_Buffer Xcb_Output_Buffer;
7struct _Xcb_Output_Buffer
8{
9 xcb_connection_t *connection;
10 xcb_visualtype_t *visual;
11 xcb_image_t *xim;
12 xcb_shm_segment_info_t *shm_info;
13 unsigned char *data;
14 int w, h, bpl, psize;
15};
16
17void evas_software_xcb_write_mask_line(Outbuf *buf, Xcb_Output_Buffer *xcbob, DATA32 *src, int w, int y);
18void evas_software_xcb_write_mask_line_rev(Outbuf *buf, Xcb_Output_Buffer *xcbob, DATA32 *src, int w, int y);
19void evas_software_xcb_write_mask_line_vert(Outbuf *buf, Xcb_Output_Buffer *xcbob, DATA32 *src, int h, int y, int w);
20void evas_software_xcb_write_mask_line_vert_rev(Outbuf *buf, Xcb_Output_Buffer *xcbob, DATA32 *src, int h, int y, int w);
21Eina_Bool evas_software_xcb_can_do_shm(xcb_connection_t *conn, xcb_screen_t *screen);
22Xcb_Output_Buffer *evas_software_xcb_output_buffer_new(xcb_connection_t *conn, xcb_visualtype_t *vis, int depth, int w, int h, int try_shm, unsigned char *data);
23void evas_software_xcb_output_buffer_free(Xcb_Output_Buffer *xcbob, Eina_Bool sync);
24void evas_software_xcb_output_buffer_paste(Xcb_Output_Buffer *xcbob, xcb_drawable_t drawable, xcb_gcontext_t gc, int x, int y, Eina_Bool sync);
25DATA8 *evas_software_xcb_output_buffer_data(Xcb_Output_Buffer *xcbob, int *bpl_ret);
26int evas_software_xcb_output_buffer_depth(Xcb_Output_Buffer *xcbob);
27int evas_software_xcb_output_buffer_byte_order(Xcb_Output_Buffer *xcbob);
28int evas_software_xcb_output_buffer_bit_order(Xcb_Output_Buffer *xcbob);
29
30#endif