1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/opengles/openglesinterface/include/glplatform.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,95 @@
1.4 +#ifndef __glplatform_h_
1.5 +#define __glplatform_h_
1.6 +
1.7 +/**
1.8 +Portions Copyright (c) 2008 - 2010 Nokia Corporation and/or its subsidiary(-ies).
1.9 +@publishedAll
1.10 +@released
1.11 +*/
1.12 +
1.13 +#ifdef __cplusplus
1.14 +extern "C" {
1.15 +#endif
1.16 +
1.17 +/*
1.18 +** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
1.19 +** Copyright (C) 2008 Silicon Graphics, Inc. All Rights Reserved.
1.20 +**
1.21 +** Permission is hereby granted, free of charge, to any person obtaining
1.22 +** a copy of this software and associated documentation files
1.23 +** (the "Software"), to deal in the Software without restriction,
1.24 +** including without limitation the rights to use, copy, modify, merge,
1.25 +** publish, distribute, sublicense, and/or sell copies of the Software,
1.26 +** and to permit persons to whom the Software is furnished to do so,
1.27 +** subject to the following conditions:
1.28 +**
1.29 +** The above copyright notice including the dates of first
1.30 +** publication and either this permission notice or a reference to
1.31 +** http://oss.sgi.com/projects/FreeB/ shall be included in all copies
1.32 +** or substantial portions of the Software.
1.33 +**
1.34 +** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1.35 +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1.36 +** MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1.37 +** IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM,
1.38 +** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
1.39 +** OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
1.40 +** THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1.41 +**
1.42 +** Except as contained in this notice, the name of Silicon Graphics, Inc.
1.43 +** shall not be used in advertising or otherwise to promote the sale, use
1.44 +** or other dealings in this Software without prior written authorization
1.45 +** from Silicon Graphics, Inc.
1.46 +*/
1.47 +
1.48 +/*
1.49 + * If the pre-included toolchain header does not specify the __SOFTFP macro,
1.50 + * this include defines it.
1.51 + */
1.52 +#include <e32def.h>
1.53 +
1.54 +/*-------------------------------------------------------------------------
1.55 + * Definition of GL_API and GL_APIENTRY
1.56 + *-----------------------------------------------------------------------*/
1.57 +
1.58 +#if defined(AEE_SIMULATOR)
1.59 +#define __GL_EXPORTS
1.60 +#endif
1.61 +
1.62 +#if defined(_WIN32) && !defined(__WINS__)
1.63 +# ifdef __GL_EXPORTS
1.64 +# define GL_API __declspec(dllexport)
1.65 +# else
1.66 +# define GL_API __declspec(dllimport)
1.67 +# endif
1.68 +#else
1.69 +# if (__ARMCC_VERSION >= 220000)
1.70 +# ifdef __GL_EXPORTS
1.71 +# define GL_API __declspec(dllexport)
1.72 +# else
1.73 +# define GL_API __declspec(dllimport)
1.74 +# endif
1.75 +# else
1.76 +# ifdef __GL_EXPORTS
1.77 +# define GL_API
1.78 +# else
1.79 +# define GL_API extern
1.80 +# endif
1.81 +# endif
1.82 +#endif
1.83 +
1.84 +#define GL_APIENTRY
1.85 +
1.86 +#ifndef APIENTRY
1.87 +# define APIENTRY GL_APIENTRY
1.88 +#endif
1.89 +
1.90 +#ifndef GLAPI
1.91 +# define GLAPI GL_API
1.92 +#endif
1.93 +
1.94 +#ifdef __cplusplus
1.95 +}
1.96 +#endif
1.97 +
1.98 +#endif /* __glplatform_h_ */