Update contrib.
1 // Copyright (c) 2008-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
27 WARNING: File for internal and partner use ONLY. Compatibility is not guaranteed in future releases.
29 __OPENVGHEADERS_USE_VG_1_1
31 The purpose of this define is to allow a staged migration
32 from OpenVG 1.0.1 to OpenVG 1.1.
34 If __OPENVGHEADERS_USE_VG_1_1 is defined, then VG/vgu.h will redirect to
36 If __OPENVGHEADERS_USE_VG_1_1 is not defined, then VG/vgu.h
37 will redirect to the Symbian default version, currently OPENVG 1.0.1.
39 SDK creators should place this #define in their OEM-specific system-wide
40 .hrh file in order to make client programs use OpenVG 1.1 headers.
41 Symbian product configurations never set this behaviour.
43 #if defined(__OPENVGHEADERS_USE_VG_1_1) && !defined(OPENVG_RESTRICTED_TO_1_0)
44 #include <VG/1.1/vgu.h>
46 #include <VG/1.0/vgu.h>
49 #endif /* __VG_VGU_H_ */