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.
14 // Test the behaviour of graphics_openvgheaders in version 1.1
15 // The purpose of this source code is to thrown an error during compilation
16 // if the VG/openvg.h header does not re-direct to the VG/1.1/openvg.h
17 // This code must be compiled with __OPENVGHEADERS_USE_VG_1_1 to ensure that version 1.1 will be chosen
29 * Include the VG/openvg.h which will be re-directed to OPENVG 1.1 headers
31 #include <VG/openvg.h>
33 #ifndef OPENVG_VERSION_1_1
34 #error "openglesheaders testcase failure: VG/openvg.h expects to include VG/1.1/openvg.h"
37 GLDEF_C TInt E32Main()
42 // Getting this far without a compilation error indicates success.