aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h')
-rw-r--r--libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h24
1 files changed, 0 insertions, 24 deletions
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
deleted file mode 100644
index 3804aa0..0000000
--- a/libraries/evas/src/modules/engines/gl_sdl/Evas_Engine_GL_SDL.h
+++ /dev/null
@@ -1,24 +0,0 @@
1#ifndef _EVAS_ENGINE_GL_SDL_H
2#define _EVAS_ENGINE_GL_SDL_H
3
4#include <SDL/SDL.h>
5
6typedef struct _Evas_Engine_Info_GL_SDL Evas_Engine_Info_GL_SDL;
7
8struct _Evas_Engine_Info_GL_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 /* engine specific data & parameters it needs to set up */
15 struct {
16 int rotation;
17 int fullscreen : 1;
18 int noframe : 1;
19 } flags;
20
21};
22#endif
23
24