sl@0: #ifndef __gl2platform_h_ sl@0: #define __gl2platform_h_ sl@0: sl@0: /* sl@0: * Portions Copyright (c) 2008 - 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * Differences from the actual sample implementation provided by Khronos: sl@0: * 1. This comment text. sl@0: * 2. Doxygen comment with tag 'publishedPartner', and tag 'released' sl@0: * 3. Modified GL_APICALL. The symbian specific check has been moved to the sl@0: * top because with a clean epoc/build/* starting point, makmake.pl wincsw sl@0: * would pick up the Win32 defines section. For vendor implementations, sl@0: * use in your .MMP file sl@0: * MACRO SYMBIAN_OGLES_DLL_EXPORTS. sl@0: * The GCC32 case has been removed because this does not fit with the symbian sl@0: * build system which uses GCCE instead. sl@0: * 4. A vendor implementation is allowed to overwrite/modify this file; sl@0: * see Khronos API Implementers' Guidelines, Revision 0.91.0. sl@0: */ sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: /* $Id: gl2platform.h 4532 2007-11-26 11:12:44Z markc $ */ 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_APICALL and GL_APIENTRY sl@0: *-----------------------------------------------------------------------*/ sl@0: sl@0: #if defined (__SYMBIAN32__) sl@0: # if defined (SYMBIAN_OGLES_DLL_EXPORTS) sl@0: # define GL_APICALL __declspec(dllexport) sl@0: # else sl@0: # define GL_APICALL __declspec(dllimport) sl@0: # endif sl@0: #elif defined(_WIN32) || defined(__VC32__) /* Win32 */ sl@0: # if defined (_DLL_EXPORTS) sl@0: # define GL_APICALL __declspec(dllexport) sl@0: # else sl@0: # define GL_APICALL __declspec(dllimport) sl@0: # endif sl@0: #elif defined (__ARMCC_VERSION) /* ADS */ sl@0: # define GL_APICALL sl@0: #elif defined (__GNUC__) /* GCC dependencies (kludge) */ sl@0: # define GL_APICALL sl@0: #endif sl@0: sl@0: #if !defined (GL_APICALL) sl@0: # error Unsupported platform! sl@0: #endif sl@0: sl@0: #define GL_APIENTRY sl@0: sl@0: #ifdef __cplusplus sl@0: } sl@0: #endif sl@0: sl@0: #endif /* __gl2platform_h_ */