os/graphics/opengles/openglesinterface/include/glplatform.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef __glplatform_h_
sl@0
     2
#define __glplatform_h_
sl@0
     3
sl@0
     4
/**
sl@0
     5
Portions Copyright (c) 2008 - 2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     6
@publishedAll
sl@0
     7
@released
sl@0
     8
*/
sl@0
     9
sl@0
    10
#ifdef __cplusplus
sl@0
    11
extern "C" {
sl@0
    12
#endif
sl@0
    13
sl@0
    14
/*
sl@0
    15
** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
sl@0
    16
** Copyright (C) 2008 Silicon Graphics, Inc. All Rights Reserved.
sl@0
    17
** 
sl@0
    18
** Permission is hereby granted, free of charge, to any person obtaining 
sl@0
    19
** a copy of this software and associated documentation files 
sl@0
    20
** (the "Software"), to deal in the Software without restriction, 
sl@0
    21
** including without limitation the rights to use, copy, modify, merge, 
sl@0
    22
** publish, distribute, sublicense, and/or sell copies of the Software, 
sl@0
    23
** and to permit persons to whom the Software is furnished to do so, 
sl@0
    24
** subject to the following conditions:
sl@0
    25
**  
sl@0
    26
** The above copyright notice including the dates of first 
sl@0
    27
** publication and either this permission notice or a reference to 
sl@0
    28
** http://oss.sgi.com/projects/FreeB/ shall be included in all copies 
sl@0
    29
** or substantial portions of the Software.
sl@0
    30
** 
sl@0
    31
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
sl@0
    32
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
sl@0
    33
** MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
sl@0
    34
** IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, 
sl@0
    35
** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
sl@0
    36
** OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR 
sl@0
    37
** THE USE OR OTHER DEALINGS IN THE SOFTWARE.
sl@0
    38
** 
sl@0
    39
** Except as contained in this notice, the name of Silicon Graphics, Inc. 
sl@0
    40
** shall not be used in advertising or otherwise to promote the sale, use 
sl@0
    41
** or other dealings in this Software without prior written authorization 
sl@0
    42
** from Silicon Graphics, Inc. 
sl@0
    43
*/
sl@0
    44
sl@0
    45
/*
sl@0
    46
 * If the pre-included toolchain header does not specify the __SOFTFP macro,
sl@0
    47
 * this include defines it.
sl@0
    48
 */
sl@0
    49
#include <e32def.h>
sl@0
    50
sl@0
    51
/*-------------------------------------------------------------------------
sl@0
    52
 * Definition of GL_API and GL_APIENTRY
sl@0
    53
 *-----------------------------------------------------------------------*/
sl@0
    54
sl@0
    55
#if defined(AEE_SIMULATOR)
sl@0
    56
#define __GL_EXPORTS
sl@0
    57
#endif
sl@0
    58
sl@0
    59
#if defined(_WIN32) && !defined(__WINS__)
sl@0
    60
#   ifdef __GL_EXPORTS
sl@0
    61
#       define GL_API __declspec(dllexport)
sl@0
    62
#   else
sl@0
    63
#       define GL_API __declspec(dllimport)
sl@0
    64
#   endif
sl@0
    65
#else
sl@0
    66
#   if (__ARMCC_VERSION >= 220000)
sl@0
    67
#   	ifdef __GL_EXPORTS
sl@0
    68
#	    	define GL_API __declspec(dllexport)
sl@0
    69
#   	else
sl@0
    70
#	    	define GL_API __declspec(dllimport)
sl@0
    71
#   	endif
sl@0
    72
#   else
sl@0
    73
#   	ifdef __GL_EXPORTS
sl@0
    74
#           define GL_API
sl@0
    75
#   	else
sl@0
    76
#           define GL_API extern
sl@0
    77
#		endif
sl@0
    78
#   endif
sl@0
    79
#endif
sl@0
    80
sl@0
    81
#define GL_APIENTRY 
sl@0
    82
sl@0
    83
#ifndef APIENTRY
sl@0
    84
#   define APIENTRY GL_APIENTRY
sl@0
    85
#endif
sl@0
    86
 
sl@0
    87
#ifndef GLAPI
sl@0
    88
#	define GLAPI GL_API
sl@0
    89
#endif
sl@0
    90
sl@0
    91
#ifdef __cplusplus
sl@0
    92
}
sl@0
    93
#endif
sl@0
    94
sl@0
    95
#endif /* __glplatform_h_ */