sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// VG/VGU.H
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __VG_VGU_H_
|
sl@0
|
19 |
#define __VG_VGU_H_
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
@file
|
sl@0
|
24 |
@publishedAll
|
sl@0
|
25 |
@released
|
sl@0
|
26 |
|
sl@0
|
27 |
WARNING: File for internal and partner use ONLY. Compatibility is not guaranteed in future releases.
|
sl@0
|
28 |
|
sl@0
|
29 |
__OPENVGHEADERS_USE_VG_1_1
|
sl@0
|
30 |
|
sl@0
|
31 |
The purpose of this define is to allow a staged migration
|
sl@0
|
32 |
from OpenVG 1.0.1 to OpenVG 1.1.
|
sl@0
|
33 |
|
sl@0
|
34 |
If __OPENVGHEADERS_USE_VG_1_1 is defined, then VG/vgu.h will redirect to
|
sl@0
|
35 |
the OPENVG 1.1 API.
|
sl@0
|
36 |
If __OPENVGHEADERS_USE_VG_1_1 is not defined, then VG/vgu.h
|
sl@0
|
37 |
will redirect to the Symbian default version, currently OPENVG 1.0.1.
|
sl@0
|
38 |
|
sl@0
|
39 |
SDK creators should place this #define in their OEM-specific system-wide
|
sl@0
|
40 |
.hrh file in order to make client programs use OpenVG 1.1 headers.
|
sl@0
|
41 |
Symbian product configurations never set this behaviour.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
#if defined(__OPENVGHEADERS_USE_VG_1_1) && !defined(OPENVG_RESTRICTED_TO_1_0)
|
sl@0
|
44 |
#include <VG/1.1/vgu.h>
|
sl@0
|
45 |
#else
|
sl@0
|
46 |
#include <VG/1.0/vgu.h>
|
sl@0
|
47 |
#endif
|
sl@0
|
48 |
|
sl@0
|
49 |
#endif /* __VG_VGU_H_ */
|
sl@0
|
50 |
|