sl@0
|
1 |
#ifndef __gl2platform_h_
|
sl@0
|
2 |
#define __gl2platform_h_
|
sl@0
|
3 |
|
sl@0
|
4 |
/*
|
sl@0
|
5 |
* Portions Copyright (c) 2008 - 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
6 |
* Differences from the actual sample implementation provided by Khronos:
|
sl@0
|
7 |
* 1. This comment text.
|
sl@0
|
8 |
* 2. Doxygen comment with tag 'publishedPartner', and tag 'released'
|
sl@0
|
9 |
* 3. Modified GL_APICALL. The symbian specific check has been moved to the
|
sl@0
|
10 |
* top because with a clean epoc/build/* starting point, makmake.pl wincsw
|
sl@0
|
11 |
* would pick up the Win32 defines section. For vendor implementations,
|
sl@0
|
12 |
* use in your .MMP file
|
sl@0
|
13 |
* MACRO SYMBIAN_OGLES_DLL_EXPORTS.
|
sl@0
|
14 |
* The GCC32 case has been removed because this does not fit with the symbian
|
sl@0
|
15 |
* build system which uses GCCE instead.
|
sl@0
|
16 |
* 4. A vendor implementation is allowed to overwrite/modify this file;
|
sl@0
|
17 |
* see Khronos API Implementers' Guidelines, Revision 0.91.0.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
/**
|
sl@0
|
21 |
@publishedAll
|
sl@0
|
22 |
@released
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
|
sl@0
|
25 |
/* $Id: gl2platform.h 4532 2007-11-26 11:12:44Z markc $ */
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifdef __cplusplus
|
sl@0
|
28 |
extern "C" {
|
sl@0
|
29 |
#endif
|
sl@0
|
30 |
|
sl@0
|
31 |
/*
|
sl@0
|
32 |
** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
|
sl@0
|
33 |
** Copyright (C) 2008 Silicon Graphics, Inc. All Rights Reserved.
|
sl@0
|
34 |
**
|
sl@0
|
35 |
** Permission is hereby granted, free of charge, to any person obtaining
|
sl@0
|
36 |
** a copy of this software and associated documentation files
|
sl@0
|
37 |
** (the "Software"), to deal in the Software without restriction,
|
sl@0
|
38 |
** including without limitation the rights to use, copy, modify, merge,
|
sl@0
|
39 |
** publish, distribute, sublicense, and/or sell copies of the Software,
|
sl@0
|
40 |
** and to permit persons to whom the Software is furnished to do so,
|
sl@0
|
41 |
** subject to the following conditions:
|
sl@0
|
42 |
**
|
sl@0
|
43 |
** The above copyright notice including the dates of first
|
sl@0
|
44 |
** publication and either this permission notice or a reference to
|
sl@0
|
45 |
** http://oss.sgi.com/projects/FreeB/ shall be included in all copies
|
sl@0
|
46 |
** or substantial portions of the Software.
|
sl@0
|
47 |
**
|
sl@0
|
48 |
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
sl@0
|
49 |
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
sl@0
|
50 |
** MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
sl@0
|
51 |
** IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM,
|
sl@0
|
52 |
** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
sl@0
|
53 |
** OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
sl@0
|
54 |
** THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
sl@0
|
55 |
**
|
sl@0
|
56 |
** Except as contained in this notice, the name of Silicon Graphics, Inc.
|
sl@0
|
57 |
** shall not be used in advertising or otherwise to promote the sale, use
|
sl@0
|
58 |
** or other dealings in this Software without prior written authorization
|
sl@0
|
59 |
** from Silicon Graphics, Inc.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
|
sl@0
|
62 |
/*
|
sl@0
|
63 |
* If the pre-included toolchain header does not specify the __SOFTFP macro,
|
sl@0
|
64 |
* this include defines it.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
#include <e32def.h>
|
sl@0
|
67 |
|
sl@0
|
68 |
/*-------------------------------------------------------------------------
|
sl@0
|
69 |
* Definition of GL_APICALL and GL_APIENTRY
|
sl@0
|
70 |
*-----------------------------------------------------------------------*/
|
sl@0
|
71 |
|
sl@0
|
72 |
#if defined (__SYMBIAN32__)
|
sl@0
|
73 |
# if defined (SYMBIAN_OGLES_DLL_EXPORTS)
|
sl@0
|
74 |
# define GL_APICALL __declspec(dllexport)
|
sl@0
|
75 |
# else
|
sl@0
|
76 |
# define GL_APICALL __declspec(dllimport)
|
sl@0
|
77 |
# endif
|
sl@0
|
78 |
#elif defined(_WIN32) || defined(__VC32__) /* Win32 */
|
sl@0
|
79 |
# if defined (_DLL_EXPORTS)
|
sl@0
|
80 |
# define GL_APICALL __declspec(dllexport)
|
sl@0
|
81 |
# else
|
sl@0
|
82 |
# define GL_APICALL __declspec(dllimport)
|
sl@0
|
83 |
# endif
|
sl@0
|
84 |
#elif defined (__ARMCC_VERSION) /* ADS */
|
sl@0
|
85 |
# define GL_APICALL
|
sl@0
|
86 |
#elif defined (__GNUC__) /* GCC dependencies (kludge) */
|
sl@0
|
87 |
# define GL_APICALL
|
sl@0
|
88 |
#endif
|
sl@0
|
89 |
|
sl@0
|
90 |
#if !defined (GL_APICALL)
|
sl@0
|
91 |
# error Unsupported platform!
|
sl@0
|
92 |
#endif
|
sl@0
|
93 |
|
sl@0
|
94 |
#define GL_APIENTRY
|
sl@0
|
95 |
|
sl@0
|
96 |
#ifdef __cplusplus
|
sl@0
|
97 |
}
|
sl@0
|
98 |
#endif
|
sl@0
|
99 |
|
sl@0
|
100 |
#endif /* __gl2platform_h_ */
|