os/graphics/egl/eglinterface/include/1.2/khronos_types.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __KHRONOS_TYPES_H__
    17 #define __KHRONOS_TYPES_H__
    18 
    19 /**
    20 @publishedAll
    21 @released
    22 */
    23 
    24 #include <e32def.h>
    25 
    26 typedef TReal32 khronos_float;    // float
    27 typedef TReal32 khronos_float_t;    // float
    28 typedef TInt8   khronos_int8_t;   // signed char
    29 typedef TUint8  khronos_uint8_t;  // unsigned char
    30 typedef TInt16  khronos_int16_t;  // short int
    31 typedef TUint16 khronos_uint16_t; // unsigned short int
    32 typedef TInt32  khronos_int32_t;  // long int
    33 typedef TUint32 khronos_uint32_t; // unsigned long int
    34 
    35 #endif // __KHRONOS_TYPES_H__
    36