os/graphics/openvg/openvgrefimplementation/sfopenvg/openvgu/vgu.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Symbian Foundation Ltd
sl@0
     3
* This component and the accompanying materials are made available
sl@0
     4
* under the terms of the License "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
* Symbian Foundation Ltd - initial contribution.
sl@0
    10
* 
sl@0
    11
* Contributors:
sl@0
    12
*
sl@0
    13
* Description:
sl@0
    14
* Implementation of VGU interface
sl@0
    15
*/
sl@0
    16
sl@0
    17
#include <e32base.h>
sl@0
    18
#include <vgu.h>
sl@0
    19
sl@0
    20
#include "vguinternal.h" //contains do_vguXX fucntion declarations
sl@0
    21
sl@0
    22
extern "C" {
sl@0
    23
sl@0
    24
EXPORT_C VGUErrorCode vguLine(VGPath path, VGfloat x0, VGfloat y0, VGfloat x1, VGfloat y1)
sl@0
    25
{
sl@0
    26
return do_vguLine(path, x0, y0, x1, y1);
sl@0
    27
}
sl@0
    28
sl@0
    29
/*-------------------------------------------------------------------*//*!
sl@0
    30
* \brief	
sl@0
    31
* \param	
sl@0
    32
* \return	
sl@0
    33
* \note		
sl@0
    34
*//*-------------------------------------------------------------------*/
sl@0
    35
sl@0
    36
EXPORT_C VGUErrorCode vguPolygon(VGPath path, const VGfloat * points, VGint count, VGboolean closed)
sl@0
    37
{
sl@0
    38
return do_vguPolygon(path, points, count, closed);
sl@0
    39
}
sl@0
    40
sl@0
    41
/*-------------------------------------------------------------------*//*!
sl@0
    42
* \brief	
sl@0
    43
* \param	
sl@0
    44
* \return	
sl@0
    45
* \note		
sl@0
    46
*//*-------------------------------------------------------------------*/
sl@0
    47
sl@0
    48
EXPORT_C VGUErrorCode vguRect(VGPath path, VGfloat x, VGfloat y, VGfloat width, VGfloat height)
sl@0
    49
{
sl@0
    50
return do_vguRect(path, x, y, width, height);
sl@0
    51
}
sl@0
    52
sl@0
    53
/*-------------------------------------------------------------------*//*!
sl@0
    54
* \brief	
sl@0
    55
* \param	
sl@0
    56
* \return	
sl@0
    57
* \note		
sl@0
    58
*//*-------------------------------------------------------------------*/
sl@0
    59
sl@0
    60
EXPORT_C VGUErrorCode vguRoundRect(VGPath path, VGfloat x, VGfloat y, VGfloat width, VGfloat height, VGfloat arcWidth, VGfloat arcHeight)
sl@0
    61
{
sl@0
    62
return do_vguRoundRect(path, x, y, width, height, arcWidth, arcHeight);
sl@0
    63
}
sl@0
    64
sl@0
    65
/*-------------------------------------------------------------------*//*!
sl@0
    66
* \brief	
sl@0
    67
* \param	
sl@0
    68
* \return	
sl@0
    69
* \note		
sl@0
    70
*//*-------------------------------------------------------------------*/
sl@0
    71
sl@0
    72
EXPORT_C VGUErrorCode vguEllipse(VGPath path, VGfloat cx, VGfloat cy, VGfloat width, VGfloat height)
sl@0
    73
{
sl@0
    74
return do_vguEllipse(path, cx, cy, width, height);
sl@0
    75
}
sl@0
    76
sl@0
    77
/*-------------------------------------------------------------------*//*!
sl@0
    78
* \brief	
sl@0
    79
* \param	
sl@0
    80
* \return	
sl@0
    81
* \note		
sl@0
    82
*//*-------------------------------------------------------------------*/
sl@0
    83
sl@0
    84
EXPORT_C VGUErrorCode vguArc(VGPath path, VGfloat x, VGfloat y, VGfloat width, VGfloat height, VGfloat startAngle, VGfloat angleExtent, VGUArcType arcType)
sl@0
    85
{
sl@0
    86
return do_vguArc(path, x, y, width, height, startAngle, angleExtent, arcType);
sl@0
    87
}
sl@0
    88
sl@0
    89
/*-------------------------------------------------------------------*//*!
sl@0
    90
* \brief	
sl@0
    91
* \param	
sl@0
    92
* \return	
sl@0
    93
* \note		
sl@0
    94
*//*-------------------------------------------------------------------*/
sl@0
    95
sl@0
    96
EXPORT_C VGUErrorCode vguComputeWarpQuadToSquare(VGfloat sx0, VGfloat sy0, VGfloat sx1, VGfloat sy1, VGfloat sx2, VGfloat sy2, VGfloat sx3, VGfloat sy3, VGfloat * matrix)
sl@0
    97
{
sl@0
    98
return do_vguComputeWarpQuadToSquare(sx0, sy0, sx1, sy1, sx2, sy2, sx3, sy3, matrix);
sl@0
    99
}
sl@0
   100
sl@0
   101
/*-------------------------------------------------------------------*//*!
sl@0
   102
* \brief	
sl@0
   103
* \param	
sl@0
   104
* \return	
sl@0
   105
* \note		
sl@0
   106
*//*-------------------------------------------------------------------*/
sl@0
   107
sl@0
   108
EXPORT_C VGUErrorCode vguComputeWarpSquareToQuad(VGfloat dx0, VGfloat dy0, VGfloat dx1, VGfloat dy1, VGfloat dx2, VGfloat dy2, VGfloat dx3, VGfloat dy3, VGfloat * matrix)
sl@0
   109
{
sl@0
   110
return do_vguComputeWarpSquareToQuad(dx0, dy0, dx1, dy1, dx2, dy2, dx3, dy3, matrix);
sl@0
   111
}
sl@0
   112
sl@0
   113
/*-------------------------------------------------------------------*//*!
sl@0
   114
* \brief	
sl@0
   115
* \param	
sl@0
   116
* \return	
sl@0
   117
* \note		
sl@0
   118
*//*-------------------------------------------------------------------*/
sl@0
   119
sl@0
   120
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)
sl@0
   121
{
sl@0
   122
return do_vguComputeWarpQuadToQuad(dx0, dy0, dx1, dy1, dx2, dy2, dx3, dy3, sx0, sy0, sx1, sy1, sx2, sy2, sx3, sy3, matrix);
sl@0
   123
}
sl@0
   124
sl@0
   125
}