author | koda |
Tue, 12 Jan 2010 07:32:15 +0000 | |
changeset 2692 | ce9992075118 |
permissions | -rw-r--r-- |
2692
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
1 |
/* |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
2 |
SDL - Simple DirectMedia Layer |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
3 |
Copyright (C) 1997-2009 Sam Lantinga |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
4 |
|
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
5 |
This library is free software; you can redistribute it and/or |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
6 |
modify it under the terms of the GNU Lesser General Public |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
7 |
License as published by the Free Software Foundation; either |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
8 |
version 2.1 of the License, or (at your option) any later version. |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
9 |
|
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
10 |
This library is distributed in the hope that it will be useful, |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
13 |
Lesser General Public License for more details. |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
14 |
|
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
15 |
You should have received a copy of the GNU Lesser General Public |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
16 |
License along with this library; if not, write to the Free Software |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
18 |
|
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
19 |
Sam Lantinga |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
20 |
slouken@libsdl.org |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
21 |
*/ |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
22 |
|
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
23 |
#include "SDL_config.h" |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
24 |
|
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
25 |
#ifndef _SDL_uikitopengles |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
26 |
#define _SDL_uikitopengles |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
27 |
|
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
28 |
#include "SDL_uikitvideo.h" |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
29 |
|
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
30 |
extern int UIKit_GL_MakeCurrent(_THIS, SDL_Window * window, |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
31 |
SDL_GLContext context); |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
32 |
extern void UIKit_GL_SwapWindow(_THIS, SDL_Window * window); |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
33 |
extern SDL_GLContext UIKit_GL_CreateContext(_THIS, SDL_Window * window); |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
34 |
extern void UIKit_GL_DeleteContext(_THIS, SDL_GLContext context); |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
35 |
extern void *UIKit_GL_GetProcAddress(_THIS, const char *proc); |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
36 |
extern int UIKit_GL_LoadLibrary(_THIS, const char *path); |
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
37 |
|
ce9992075118
better network support + initial work for returning to frontend
koda
parents:
diff
changeset
|
38 |
#endif |