author | Sam Lantinga |
Fri, 15 Feb 2013 08:47:44 -0800 | |
changeset 6885 | 700f1b25f77f |
parent 6138 | 4c64952a58fb |
child 7191 | 75360622e65f |
permissions | -rw-r--r-- |
hfutrell@2746 | 1 |
/* |
slouken@5535 | 2 |
Simple DirectMedia Layer |
slouken@6885 | 3 |
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org> |
slouken@5204 | 4 |
|
slouken@5535 | 5 |
This software is provided 'as-is', without any express or implied |
slouken@5535 | 6 |
warranty. In no event will the authors be held liable for any damages |
slouken@5535 | 7 |
arising from the use of this software. |
slouken@5204 | 8 |
|
slouken@5535 | 9 |
Permission is granted to anyone to use this software for any purpose, |
slouken@5535 | 10 |
including commercial applications, and to alter it and redistribute it |
slouken@5535 | 11 |
freely, subject to the following restrictions: |
slouken@5204 | 12 |
|
slouken@5535 | 13 |
1. The origin of this software must not be misrepresented; you must not |
slouken@5535 | 14 |
claim that you wrote the original software. If you use this software |
slouken@5535 | 15 |
in a product, an acknowledgment in the product documentation would be |
slouken@5535 | 16 |
appreciated but is not required. |
slouken@5535 | 17 |
2. Altered source versions must be plainly marked as such, and must not be |
slouken@5535 | 18 |
misrepresented as being the original software. |
slouken@5535 | 19 |
3. This notice may not be removed or altered from any source distribution. |
slouken@5204 | 20 |
*/ |
hfutrell@2746 | 21 |
|
slouken@3407 | 22 |
/** |
slouken@3407 | 23 |
* \file SDL_opengles.h |
slouken@3407 | 24 |
* |
slouken@5204 | 25 |
* This is a simple file to encapsulate the OpenGL ES 1.X API headers. |
hfutrell@2746 | 26 |
*/ |
hfutrell@2746 | 27 |
|
slouken@2765 | 28 |
#ifdef __IPHONEOS__ |
slouken@5204 | 29 |
#include <OpenGLES/ES1/gl.h> |
slouken@5204 | 30 |
#include <OpenGLES/ES1/glext.h> |
slouken@5204 | 31 |
#else |
slouken@5204 | 32 |
#include <GLES/gl.h> |
slouken@5204 | 33 |
#include <GLES/glext.h> |
slouken@2765 | 34 |
#endif |
slouken@2753 | 35 |
|
hfutrell@2746 | 36 |
#ifndef APIENTRY |
hfutrell@2746 | 37 |
#define APIENTRY |
slouken@2753 | 38 |
#endif |