os/graphics/openvg/openvginterface/include/vgu.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/openvg/openvginterface/include/vgu.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,50 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// VG/VGU.H
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __VG_VGU_H_
    1.22 +#define __VG_VGU_H_
    1.23 +
    1.24 +
    1.25 +/**
    1.26 +@file
    1.27 +@publishedAll
    1.28 +@released
    1.29 +
    1.30 +WARNING: File for internal and partner use ONLY.  Compatibility is not guaranteed in future releases.	
    1.31 +
    1.32 +__OPENVGHEADERS_USE_VG_1_1
    1.33 +    
    1.34 +The purpose of this define is to allow a staged migration 
    1.35 +from OpenVG 1.0.1 to OpenVG 1.1. 
    1.36 +
    1.37 +If __OPENVGHEADERS_USE_VG_1_1 is defined, then VG/vgu.h will redirect to 
    1.38 +the OPENVG 1.1 API.
    1.39 +If __OPENVGHEADERS_USE_VG_1_1 is not defined, then VG/vgu.h 
    1.40 +will redirect to the Symbian default version, currently OPENVG 1.0.1. 
    1.41 +
    1.42 +SDK creators should place this #define in their OEM-specific system-wide
    1.43 +.hrh file in order to make client programs use OpenVG 1.1 headers.  
    1.44 +Symbian product configurations never set this behaviour.
    1.45 +*/
    1.46 +#if defined(__OPENVGHEADERS_USE_VG_1_1) && !defined(OPENVG_RESTRICTED_TO_1_0)
    1.47 +#include <VG/1.1/vgu.h>
    1.48 +#else
    1.49 +#include <VG/1.0/vgu.h>
    1.50 +#endif
    1.51 +
    1.52 +#endif /* __VG_VGU_H_ */
    1.53 +