aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/software_8_x11/Evas_Engine_Software_8_X11.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_8_x11/Evas_Engine_Software_8_X11.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_8_x11/Evas_Engine_Software_8_X11.h')
-rw-r--r--libraries/evas/src/modules/engines/software_8_x11/Evas_Engine_Software_8_X11.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/libraries/evas/src/modules/engines/software_8_x11/Evas_Engine_Software_8_X11.h b/libraries/evas/src/modules/engines/software_8_x11/Evas_Engine_Software_8_X11.h
deleted file mode 100644
index fac3d8e..0000000
--- a/libraries/evas/src/modules/engines/software_8_x11/Evas_Engine_Software_8_X11.h
+++ /dev/null
@@ -1,38 +0,0 @@
1#ifndef _EVAS_ENGINE_SOFTWARE_8_X11_H
2#define _EVAS_ENGINE_SOFTWARE_8_X11_H
3
4#include <xcb/xcb.h>
5
6typedef struct _Evas_Engine_Info_Software_8_X11 Evas_Engine_Info_Software_8_X11;
7
8struct _Evas_Engine_Info_Software_8_X11
9{
10 /* PRIVATE - don't mess with this baby or evas will poke its tongue out */
11 /* at you and make nasty noises */
12 Evas_Engine_Info magic;
13
14 /* engine specific data & parameters it needs to set up */
15 struct {
16 xcb_connection_t *connection;
17 xcb_drawable_t drawable;
18 xcb_gcontext_t gc;
19 xcb_screen_t *screen;
20
21 unsigned int mask;
22 void *visual;
23 unsigned int colormap;
24 int depth;
25 int rotation;
26
27 int alloc_grayscale : 1;
28 int debug : 1;
29 int shape_dither : 1;
30 int destination_alpha : 1;
31 int track_mask_changes : 1;
32 } info;
33
34 /* non-blocking or blocking mode */
35 Evas_Engine_Render_Mode render_mode;
36};
37
38#endif