move around - flatter.
[profile/ivi/evas.git] / src / modules / engines / software_sdl / Evas_Engine_SDL.h
1 #ifndef _EVAS_ENGINE_SDL_H
2 #define _EVAS_ENGINE_SDL_H
3
4 #include <SDL/SDL.h>
5
6 typedef struct _Evas_Engine_Info_SDL Evas_Engine_Info_SDL;
7
8 struct _Evas_Engine_Info_SDL
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    struct {
15      int                        rotation;
16      int                        fullscreen : 1;
17      int                        hwsurface : 1;
18      int                        noframe : 1;
19      int                        alpha : 1;
20    } info;
21 };
22 #endif
23
24