move around - flatter.
[profile/ivi/evas.git] / src / modules / engines / software_16_sdl / Evas_Engine_SDL_16.h
1 #ifndef         _EVAS_ENGINE_SDL_16_H
2 # define        _EVAS_ENGINE_SDL_16_H
3
4 #include <SDL/SDL.h>
5
6 typedef struct _Evas_Engine_Info_SDL_16 Evas_Engine_Info_SDL_16;
7 struct _Evas_Engine_Info_SDL_16
8 {
9   /* PRIVATE - don't mess with this baby or evas will poke its tongue out */
10   /* at you and make nasty noises */
11   Evas_Engine_Info magic;
12
13   struct {
14     int                         rotation;
15     int                         fullscreen : 1;
16     int                         hwsurface : 1;
17     int                         noframe : 1;
18     int                         alpha : 1;
19   } info;
20 };
21
22 #endif