aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h
blob: 3804aa06e572a41cc9ea2a037ba73ab5ac2cb809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _EVAS_ENGINE_GL_SDL_H
#define _EVAS_ENGINE_GL_SDL_H

#include <SDL/SDL.h>

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