From dd7595a3475407a7fa96a97393bae8c5220e8762 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Wed, 4 Jan 2012 18:41:13 +1000 Subject: Add the base Enlightenment Foundation Libraries - eina, eet, evas, ecore, embryo, and edje. Note that embryo wont be used, but I'm not sure yet if you can build edje without it. --- .../Evas_Engine_Software_16_DDraw.h | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 libraries/evas/src/modules/engines/software_16_ddraw/Evas_Engine_Software_16_DDraw.h (limited to 'libraries/evas/src/modules/engines/software_16_ddraw/Evas_Engine_Software_16_DDraw.h') diff --git a/libraries/evas/src/modules/engines/software_16_ddraw/Evas_Engine_Software_16_DDraw.h b/libraries/evas/src/modules/engines/software_16_ddraw/Evas_Engine_Software_16_DDraw.h new file mode 100644 index 0000000..3c1547a --- /dev/null +++ b/libraries/evas/src/modules/engines/software_16_ddraw/Evas_Engine_Software_16_DDraw.h @@ -0,0 +1,32 @@ +#ifndef __EVAS_ENGINE_SOFTWARE_16_DDRAW_H__ +#define __EVAS_ENGINE_SOFTWARE_16_DDRAW_H__ + + +#include +#include + +typedef struct _Evas_Engine_Info_Software_16_DDraw Evas_Engine_Info_Software_16_DDraw; + +struct _Evas_Engine_Info_Software_16_DDraw +{ + /* PRIVATE - don't mess with this baby or evas will poke its tongue out */ + /* at you and make nasty noises */ + Evas_Engine_Info magic; + + struct { + HWND window; + LPDIRECTDRAW object; /* DirectDraw object */ + LPDIRECTDRAWSURFACE surface_primary; /* DirectDraw primary surface */ + LPDIRECTDRAWSURFACE surface_back; /* DirectDraw back surface */ + LPDIRECTDRAWSURFACE surface_source; /* DirectDraw source surface */ + int depth; + + int rotation; + } info; + + /* non-blocking or blocking mode */ + Evas_Engine_Render_Mode render_mode; +}; + + +#endif /* __EVAS_ENGINE_SOFTWARE_16_DDRAW_H__ */ -- cgit v1.1