1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/opengles/openglesinterface/include/GLES2/gl2platform.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,100 @@
1.4 +#ifndef __gl2platform_h_
1.5 +#define __gl2platform_h_
1.6 +
1.7 +/*
1.8 + * Portions Copyright (c) 2008 - 2009 Nokia Corporation and/or its subsidiary(-ies).
1.9 + * Differences from the actual sample implementation provided by Khronos:
1.10 + * 1. This comment text.
1.11 + * 2. Doxygen comment with tag 'publishedPartner', and tag 'released'
1.12 + * 3. Modified GL_APICALL. The symbian specific check has been moved to the
1.13 + * top because with a clean epoc/build/* starting point, makmake.pl wincsw
1.14 + * would pick up the Win32 defines section. For vendor implementations,
1.15 + * use in your .MMP file
1.16 + * MACRO SYMBIAN_OGLES_DLL_EXPORTS.
1.17 + * The GCC32 case has been removed because this does not fit with the symbian
1.18 + * build system which uses GCCE instead.
1.19 + * 4. A vendor implementation is allowed to overwrite/modify this file;
1.20 + * see Khronos API Implementers' Guidelines, Revision 0.91.0.
1.21 + */
1.22 +
1.23 +/**
1.24 +@publishedAll
1.25 +@released
1.26 +*/
1.27 +
1.28 +/* $Id: gl2platform.h 4532 2007-11-26 11:12:44Z markc $ */
1.29 +
1.30 +#ifdef __cplusplus
1.31 +extern "C" {
1.32 +#endif
1.33 +
1.34 +/*
1.35 +** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
1.36 +** Copyright (C) 2008 Silicon Graphics, Inc. All Rights Reserved.
1.37 +**
1.38 +** Permission is hereby granted, free of charge, to any person obtaining
1.39 +** a copy of this software and associated documentation files
1.40 +** (the "Software"), to deal in the Software without restriction,
1.41 +** including without limitation the rights to use, copy, modify, merge,
1.42 +** publish, distribute, sublicense, and/or sell copies of the Software,
1.43 +** and to permit persons to whom the Software is furnished to do so,
1.44 +** subject to the following conditions:
1.45 +**
1.46 +** The above copyright notice including the dates of first
1.47 +** publication and either this permission notice or a reference to
1.48 +** http://oss.sgi.com/projects/FreeB/ shall be included in all copies
1.49 +** or substantial portions of the Software.
1.50 +**
1.51 +** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1.52 +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1.53 +** MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1.54 +** IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM,
1.55 +** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
1.56 +** OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
1.57 +** THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1.58 +**
1.59 +** Except as contained in this notice, the name of Silicon Graphics, Inc.
1.60 +** shall not be used in advertising or otherwise to promote the sale, use
1.61 +** or other dealings in this Software without prior written authorization
1.62 +** from Silicon Graphics, Inc.
1.63 +*/
1.64 +
1.65 +/*
1.66 + * If the pre-included toolchain header does not specify the __SOFTFP macro,
1.67 + * this include defines it.
1.68 + */
1.69 +#include <e32def.h>
1.70 +
1.71 +/*-------------------------------------------------------------------------
1.72 + * Definition of GL_APICALL and GL_APIENTRY
1.73 + *-----------------------------------------------------------------------*/
1.74 +
1.75 +#if defined (__SYMBIAN32__)
1.76 +# if defined (SYMBIAN_OGLES_DLL_EXPORTS)
1.77 +# define GL_APICALL __declspec(dllexport)
1.78 +# else
1.79 +# define GL_APICALL __declspec(dllimport)
1.80 +# endif
1.81 +#elif defined(_WIN32) || defined(__VC32__) /* Win32 */
1.82 +# if defined (_DLL_EXPORTS)
1.83 +# define GL_APICALL __declspec(dllexport)
1.84 +# else
1.85 +# define GL_APICALL __declspec(dllimport)
1.86 +# endif
1.87 +#elif defined (__ARMCC_VERSION) /* ADS */
1.88 +# define GL_APICALL
1.89 +#elif defined (__GNUC__) /* GCC dependencies (kludge) */
1.90 +# define GL_APICALL
1.91 +#endif
1.92 +
1.93 +#if !defined (GL_APICALL)
1.94 +# error Unsupported platform!
1.95 +#endif
1.96 +
1.97 +#define GL_APIENTRY
1.98 +
1.99 +#ifdef __cplusplus
1.100 +}
1.101 +#endif
1.102 +
1.103 +#endif /* __gl2platform_h_ */