sl@0: #ifndef __glplatform_h_ sl@0: #define __glplatform_h_ sl@0: sl@0: /** sl@0: Portions Copyright (c) 2008 - 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: #ifdef __cplusplus sl@0: extern "C" { sl@0: #endif sl@0: sl@0: /* sl@0: ** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) sl@0: ** Copyright (C) 2008 Silicon Graphics, Inc. All Rights Reserved. sl@0: ** sl@0: ** Permission is hereby granted, free of charge, to any person obtaining sl@0: ** a copy of this software and associated documentation files sl@0: ** (the "Software"), to deal in the Software without restriction, sl@0: ** including without limitation the rights to use, copy, modify, merge, sl@0: ** publish, distribute, sublicense, and/or sell copies of the Software, sl@0: ** and to permit persons to whom the Software is furnished to do so, sl@0: ** subject to the following conditions: sl@0: ** sl@0: ** The above copyright notice including the dates of first sl@0: ** publication and either this permission notice or a reference to sl@0: ** http://oss.sgi.com/projects/FreeB/ shall be included in all copies sl@0: ** or substantial portions of the Software. sl@0: ** sl@0: ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, sl@0: ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF sl@0: ** MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. sl@0: ** IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, sl@0: ** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR sl@0: ** OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR sl@0: ** THE USE OR OTHER DEALINGS IN THE SOFTWARE. sl@0: ** sl@0: ** Except as contained in this notice, the name of Silicon Graphics, Inc. sl@0: ** shall not be used in advertising or otherwise to promote the sale, use sl@0: ** or other dealings in this Software without prior written authorization sl@0: ** from Silicon Graphics, Inc. sl@0: */ sl@0: sl@0: /* sl@0: * If the pre-included toolchain header does not specify the __SOFTFP macro, sl@0: * this include defines it. sl@0: */ sl@0: #include sl@0: sl@0: /*------------------------------------------------------------------------- sl@0: * Definition of GL_API and GL_APIENTRY sl@0: *-----------------------------------------------------------------------*/ sl@0: sl@0: #if defined(AEE_SIMULATOR) sl@0: #define __GL_EXPORTS sl@0: #endif sl@0: sl@0: #if defined(_WIN32) && !defined(__WINS__) sl@0: # ifdef __GL_EXPORTS sl@0: # define GL_API __declspec(dllexport) sl@0: # else sl@0: # define GL_API __declspec(dllimport) sl@0: # endif sl@0: #else sl@0: # if (__ARMCC_VERSION >= 220000) sl@0: # ifdef __GL_EXPORTS sl@0: # define GL_API __declspec(dllexport) sl@0: # else sl@0: # define GL_API __declspec(dllimport) sl@0: # endif sl@0: # else sl@0: # ifdef __GL_EXPORTS sl@0: # define GL_API sl@0: # else sl@0: # define GL_API extern sl@0: # endif sl@0: # endif sl@0: #endif sl@0: sl@0: #define GL_APIENTRY sl@0: sl@0: #ifndef APIENTRY sl@0: # define APIENTRY GL_APIENTRY sl@0: #endif sl@0: sl@0: #ifndef GLAPI sl@0: # define GLAPI GL_API sl@0: #endif sl@0: sl@0: #ifdef __cplusplus sl@0: } sl@0: #endif sl@0: sl@0: #endif /* __glplatform_h_ */