Mercurial > sdl-ios-xcode
annotate src/video/uikit/SDL_uikitopengles.h @ 2429:2c55b72ba46e gsoc2008_iphone
testdyngles is exactly what it sounds like -- a version of testdyngl that uses OpenGL ES calls instead of OpenGL. Was necessary to create because glOrtho is called glOrthof in OpenGL ES, and OpenGL ES doesn't have glBegin() type semantics for specifying geometry.
author | Holmes Futrell <hfutrell@umail.ucsb.edu> |
---|---|
date | Fri, 15 Aug 2008 00:52:52 +0000 |
parents | e9a1eed243c9 |
children | 54bc7e0806de |
rev | line source |
---|---|
2350
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
1 /* |
2403
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
2 SDL - Simple DirectMedia Layer |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
4 |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
5 This library is free software; you can redistribute it and/or |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
7 License as published by the Free Software Foundation; either |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
9 |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
10 This library is distributed in the hope that it will be useful, |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
13 Lesser General Public License for more details. |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
14 |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
18 |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
19 Sam Lantinga |
e9a1eed243c9
Added standard SDL header comments
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
2350
diff
changeset
|
20 slouken@libsdl.org |
2350
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
21 */ |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
22 |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
23 #include "SDL_config.h" |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
24 |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
25 #ifndef _SDL_uikitopengles |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
26 #define _SDL_uikitopengles |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
27 |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
28 #include "SDL_uikitvideo.h" |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
29 |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
30 extern int UIKit_GL_MakeCurrent(_THIS, SDL_Window * window, SDL_GLContext context); |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
31 extern void UIKit_GL_SwapWindow(_THIS, SDL_Window * window); |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
32 extern SDL_GLContext UIKit_GL_CreateContext(_THIS, SDL_Window * window); |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
33 extern void UIKit_GL_DeleteContext(_THIS, SDL_GLContext context); |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
34 extern void *UIKit_GL_GetProcAddress(_THIS, const char *proc); |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
35 extern int UIKit_GL_LoadLibrary(_THIS, const char *path); |
eb828d6c3efb
SDL_uikitopengles is responsible for OpenGLES related functions in the UIKit video driver. The main thing to note is UIKit_GL_CreateContext which creates an instance of the SDL_uikitopenglview class, an OpenGL ES View. Most the real functionality is in SDL_uikitopenglview.
Holmes Futrell <hfutrell@umail.ucsb.edu>
parents:
diff
changeset
|
36 #endif |