sl@0
|
1 |
// Copyright (c) 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 |
// This test stub has been manually created based on the .def file generator
|
sl@0
|
15 |
// utility available in ../group/openvg11
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <VG/openvg.h>
|
sl@0
|
20 |
#include <VG/vgu.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32def.h>
|
sl@0
|
23 |
#include <e32uid.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifdef __cplusplus
|
sl@0
|
26 |
extern "C" {
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
// --------------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
31 |
// OpenVG VGU functions
|
sl@0
|
32 |
EXPORT_C VGUErrorCode vguArc(VGPath /*path*/, VGfloat /*x*/, VGfloat /*y*/, VGfloat /*width*/, VGfloat /*height*/, VGfloat /*startAngle*/, VGfloat /*angleExtent*/, VGUArcType /*arcType*/) { return VGU_ILLEGAL_ARGUMENT_ERROR; }
|
sl@0
|
33 |
EXPORT_C VGUErrorCode vguComputeWarpQuadToQuad(VGfloat /*dx0*/, VGfloat /*dy0*/, VGfloat /*dx1*/, VGfloat /*dy1*/, VGfloat /*dx2*/, VGfloat /*dy2*/, VGfloat /*dx3*/, VGfloat /*dy3*/, VGfloat /*sx0*/, VGfloat /*sy0*/, VGfloat /*sx1*/, VGfloat /*sy1*/, VGfloat /*sx2*/, VGfloat /*sy2*/, VGfloat /*sx3*/, VGfloat /*sy3*/, VGfloat * /*matrix*/) { return VGU_ILLEGAL_ARGUMENT_ERROR; }
|
sl@0
|
34 |
EXPORT_C VGUErrorCode vguComputeWarpQuadToSquare(VGfloat /*sx0*/, VGfloat /*sy0*/, VGfloat /*sx1*/, VGfloat /*sy1*/, VGfloat /*sx2*/, VGfloat /*sy2*/, VGfloat /*sx3*/, VGfloat /*sy3*/, VGfloat * /*matrix*/) { return VGU_ILLEGAL_ARGUMENT_ERROR; }
|
sl@0
|
35 |
EXPORT_C VGUErrorCode vguComputeWarpSquareToQuad(VGfloat /*dx0*/, VGfloat /*dy0*/, VGfloat /*dx1*/, VGfloat /*dy1*/, VGfloat /*dx2*/, VGfloat /*dy2*/, VGfloat /*dx3*/, VGfloat /*dy3*/, VGfloat * /*matrix*/) { return VGU_ILLEGAL_ARGUMENT_ERROR; }
|
sl@0
|
36 |
EXPORT_C VGUErrorCode vguEllipse(VGPath /*path*/, VGfloat /*cx*/, VGfloat /*cy*/, VGfloat /*width*/, VGfloat /*height*/) { return VGU_ILLEGAL_ARGUMENT_ERROR; }
|
sl@0
|
37 |
EXPORT_C VGUErrorCode vguLine(VGPath /*path*/, VGfloat /*x0*/, VGfloat /*y0*/, VGfloat /*x1*/, VGfloat /*y1*/) { return VGU_ILLEGAL_ARGUMENT_ERROR; }
|
sl@0
|
38 |
EXPORT_C VGUErrorCode vguPolygon(VGPath /*path*/, const VGfloat * /*points*/, VGint /*count*/, VGboolean /*closed*/) { return VGU_ILLEGAL_ARGUMENT_ERROR; }
|
sl@0
|
39 |
EXPORT_C VGUErrorCode vguRect(VGPath /*path*/, VGfloat /*x*/, VGfloat /*y*/, VGfloat /*width*/, VGfloat /*height*/) { return VGU_ILLEGAL_ARGUMENT_ERROR; }
|
sl@0
|
40 |
EXPORT_C VGUErrorCode vguRoundRect(VGPath /*path*/, VGfloat /*x*/, VGfloat /*y*/, VGfloat /*width*/, VGfloat /*height*/, VGfloat /*arcWidth*/, VGfloat /*arcHeight*/) { return VGU_ILLEGAL_ARGUMENT_ERROR; }
|
sl@0
|
41 |
|
sl@0
|
42 |
// --------------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
43 |
// END: OpenVG VGU
|
sl@0
|
44 |
// --------------------------------------------------------------------------------------------------------------------------------------------
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
#ifdef __cplusplus
|
sl@0
|
48 |
}
|
sl@0
|
49 |
#endif
|