sl@0: /* sl@0: * Copyright (c) 2009 Symbian Foundation Ltd sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Symbian Foundation Ltd - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Implementation of VGU interface sl@0: */ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: #include "vguinternal.h" //contains do_vguXX fucntion declarations sl@0: sl@0: extern "C" { sl@0: sl@0: EXPORT_C VGUErrorCode vguLine(VGPath path, VGfloat x0, VGfloat y0, VGfloat x1, VGfloat y1) sl@0: { sl@0: return do_vguLine(path, x0, y0, x1, y1); sl@0: } sl@0: sl@0: /*-------------------------------------------------------------------*//*! sl@0: * \brief sl@0: * \param sl@0: * \return sl@0: * \note sl@0: *//*-------------------------------------------------------------------*/ sl@0: sl@0: EXPORT_C VGUErrorCode vguPolygon(VGPath path, const VGfloat * points, VGint count, VGboolean closed) sl@0: { sl@0: return do_vguPolygon(path, points, count, closed); sl@0: } sl@0: sl@0: /*-------------------------------------------------------------------*//*! sl@0: * \brief sl@0: * \param sl@0: * \return sl@0: * \note sl@0: *//*-------------------------------------------------------------------*/ sl@0: sl@0: EXPORT_C VGUErrorCode vguRect(VGPath path, VGfloat x, VGfloat y, VGfloat width, VGfloat height) sl@0: { sl@0: return do_vguRect(path, x, y, width, height); sl@0: } sl@0: sl@0: /*-------------------------------------------------------------------*//*! sl@0: * \brief sl@0: * \param sl@0: * \return sl@0: * \note sl@0: *//*-------------------------------------------------------------------*/ sl@0: sl@0: EXPORT_C VGUErrorCode vguRoundRect(VGPath path, VGfloat x, VGfloat y, VGfloat width, VGfloat height, VGfloat arcWidth, VGfloat arcHeight) sl@0: { sl@0: return do_vguRoundRect(path, x, y, width, height, arcWidth, arcHeight); sl@0: } sl@0: sl@0: /*-------------------------------------------------------------------*//*! sl@0: * \brief sl@0: * \param sl@0: * \return sl@0: * \note sl@0: *//*-------------------------------------------------------------------*/ sl@0: sl@0: EXPORT_C VGUErrorCode vguEllipse(VGPath path, VGfloat cx, VGfloat cy, VGfloat width, VGfloat height) sl@0: { sl@0: return do_vguEllipse(path, cx, cy, width, height); sl@0: } sl@0: sl@0: /*-------------------------------------------------------------------*//*! sl@0: * \brief sl@0: * \param sl@0: * \return sl@0: * \note sl@0: *//*-------------------------------------------------------------------*/ sl@0: sl@0: EXPORT_C VGUErrorCode vguArc(VGPath path, VGfloat x, VGfloat y, VGfloat width, VGfloat height, VGfloat startAngle, VGfloat angleExtent, VGUArcType arcType) sl@0: { sl@0: return do_vguArc(path, x, y, width, height, startAngle, angleExtent, arcType); sl@0: } sl@0: sl@0: /*-------------------------------------------------------------------*//*! sl@0: * \brief sl@0: * \param sl@0: * \return sl@0: * \note sl@0: *//*-------------------------------------------------------------------*/ sl@0: sl@0: EXPORT_C VGUErrorCode vguComputeWarpQuadToSquare(VGfloat sx0, VGfloat sy0, VGfloat sx1, VGfloat sy1, VGfloat sx2, VGfloat sy2, VGfloat sx3, VGfloat sy3, VGfloat * matrix) sl@0: { sl@0: return do_vguComputeWarpQuadToSquare(sx0, sy0, sx1, sy1, sx2, sy2, sx3, sy3, matrix); sl@0: } sl@0: sl@0: /*-------------------------------------------------------------------*//*! sl@0: * \brief sl@0: * \param sl@0: * \return sl@0: * \note sl@0: *//*-------------------------------------------------------------------*/ sl@0: sl@0: EXPORT_C VGUErrorCode vguComputeWarpSquareToQuad(VGfloat dx0, VGfloat dy0, VGfloat dx1, VGfloat dy1, VGfloat dx2, VGfloat dy2, VGfloat dx3, VGfloat dy3, VGfloat * matrix) sl@0: { sl@0: return do_vguComputeWarpSquareToQuad(dx0, dy0, dx1, dy1, dx2, dy2, dx3, dy3, matrix); sl@0: } sl@0: sl@0: /*-------------------------------------------------------------------*//*! sl@0: * \brief sl@0: * \param sl@0: * \return sl@0: * \note sl@0: *//*-------------------------------------------------------------------*/ sl@0: sl@0: 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: { sl@0: return do_vguComputeWarpQuadToQuad(dx0, dy0, dx1, dy1, dx2, dy2, dx3, dy3, sx0, sy0, sx1, sy1, sx2, sy2, sx3, sy3, matrix); sl@0: } sl@0: sl@0: }