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. --- .../modules/engines/gl_sdl/Evas_Engine_GL_SDL.h | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h (limited to 'libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h') diff --git a/libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h b/libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h new file mode 100644 index 0000000..3804aa0 --- /dev/null +++ b/libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h @@ -0,0 +1,24 @@ +#ifndef _EVAS_ENGINE_GL_SDL_H +#define _EVAS_ENGINE_GL_SDL_H + +#include + +typedef struct _Evas_Engine_Info_GL_SDL Evas_Engine_Info_GL_SDL; + +struct _Evas_Engine_Info_GL_SDL +{ + /* PRIVATE - don't mess with this baby or evas will poke its tongue out */ + /* at you and make nasty noises */ + Evas_Engine_Info magic; + + /* engine specific data & parameters it needs to set up */ + struct { + int rotation; + int fullscreen : 1; + int noframe : 1; + } flags; + +}; +#endif + + -- cgit v1.1