1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/openvg/openvginterface/include/1.1/vgu.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,159 @@
1.4 +/*------------------------------------------------------------------------
1.5 + *
1.6 + * VGU 1.1 Reference Implementation
1.7 + * -------------------------------------
1.8 + *
1.9 + * Copyright (c) 2008-2009 The Khronos Group Inc.
1.10 + *
1.11 + * Permission is hereby granted, free of charge, to any person obtaining a
1.12 + * copy of this software and /or associated documentation files
1.13 + * (the "Materials "), to deal in the Materials without restriction,
1.14 + * including without limitation the rights to use, copy, modify, merge,
1.15 + * publish, distribute, sublicense, and/or sell copies of the Materials,
1.16 + * and to permit persons to whom the Materials are furnished to do so,
1.17 + * subject to the following conditions:
1.18 + *
1.19 + * The above copyright notice and this permission notice shall be included
1.20 + * in all copies or substantial portions of the Materials.
1.21 + *
1.22 + * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1.23 + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1.24 + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1.25 + * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
1.26 + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
1.27 + * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR
1.28 + * THE USE OR OTHER DEALINGS IN THE MATERIALS.
1.29 + *
1.30 + *//**
1.31 + * \file
1.32 + * \brief VGU 1.1 API.
1.33 + *//*-------------------------------------------------------------------*/
1.34 +
1.35 +#ifndef __VG_1_1_VGU_H
1.36 +#define __VG_1_1_VGU_H
1.37 +
1.38 +#ifndef __VG_VGU_H_
1.39 +#error Do not include this file directly. Use <VG/vgu.h>.
1.40 +#endif
1.41 +
1.42 +/* differences from the actual sample implemtation provided by Khronos:
1.43 +- this comment
1.44 +- the Doxygen comment with tag 'publishedAll', and tag 'released'
1.45 +- changing
1.46 + #define VG_API_CALL extern
1.47 + to
1.48 + #define VG_API_CALL IMPORT_C
1.49 +- the addition of __SOFTFP in some of the function prototypes
1.50 + */
1.51 +
1.52 +/**
1.53 +@publishedAll
1.54 +@released
1.55 +*/
1.56 +#ifdef __cplusplus
1.57 +extern "C" {
1.58 +#endif
1.59 +
1.60 +#include <VG/openvg.h>
1.61 +
1.62 +#define VGU_VERSION_1_0 1
1.63 +#define VGU_VERSION_1_0_1 1
1.64 +#define VGU_VERSION_1_1 2
1.65 +
1.66 +#ifndef VGU_API_CALL
1.67 +# if defined(SYMBIAN_VG_DLL_EXPORTS)
1.68 +# define VGU_API_CALL EXPORT_C
1.69 +# else
1.70 +# define VGU_API_CALL IMPORT_C
1.71 +# endif //defined(SYMBIAN_VG_DLL_EXPORTS)
1.72 +#endif
1.73 +#ifndef VGU_APIENTRY
1.74 +#define VGU_APIENTRY /* nothing */
1.75 +#endif
1.76 +#ifndef VGU_APIEXIT
1.77 +#define VGU_APIEXIT __SOFTFP
1.78 +#endif
1.79 +
1.80 +typedef enum {
1.81 + VGU_NO_ERROR = 0,
1.82 + VGU_BAD_HANDLE_ERROR = 0xF000,
1.83 + VGU_ILLEGAL_ARGUMENT_ERROR = 0xF001,
1.84 + VGU_OUT_OF_MEMORY_ERROR = 0xF002,
1.85 + VGU_PATH_CAPABILITY_ERROR = 0xF003,
1.86 + VGU_BAD_WARP_ERROR = 0xF004
1.87 +} VGUErrorCode;
1.88 +
1.89 +typedef enum {
1.90 + VGU_ARC_OPEN = 0xF100,
1.91 + VGU_ARC_CHORD = 0xF101,
1.92 + VGU_ARC_PIE = 0xF102
1.93 +} VGUArcType;
1.94 +
1.95 +VGU_API_CALL VGUErrorCode VGU_APIENTRY
1.96 + vguLine(VGPath path,
1.97 + VGfloat x0, VGfloat y0,
1.98 + VGfloat x1, VGfloat y1) VGU_APIEXIT;
1.99 +
1.100 +VGU_API_CALL VGUErrorCode VGU_APIENTRY
1.101 + vguPolygon(VGPath path,
1.102 + const VGfloat * points,
1.103 + VGint count,
1.104 + VGboolean closed) VGU_APIEXIT;
1.105 +
1.106 +VGU_API_CALL VGUErrorCode VGU_APIENTRY
1.107 + vguRect(VGPath path,
1.108 + VGfloat x, VGfloat y,
1.109 + VGfloat width, VGfloat height) VGU_APIEXIT;
1.110 +
1.111 +VGU_API_CALL VGUErrorCode VGU_APIENTRY
1.112 + vguRoundRect(VGPath path,
1.113 + VGfloat x, VGfloat y,
1.114 + VGfloat width,
1.115 + VGfloat height,
1.116 + VGfloat arcWidth,
1.117 + VGfloat arcHeight) VGU_APIEXIT;
1.118 +
1.119 +VGU_API_CALL VGUErrorCode VGU_APIENTRY
1.120 + vguEllipse(VGPath path,
1.121 + VGfloat cx, VGfloat cy,
1.122 + VGfloat width,
1.123 + VGfloat height) VGU_APIEXIT;
1.124 +
1.125 +VGU_API_CALL VGUErrorCode VGU_APIENTRY
1.126 + vguArc(VGPath path,
1.127 + VGfloat x, VGfloat y,
1.128 + VGfloat width, VGfloat height,
1.129 + VGfloat startAngle,
1.130 + VGfloat angleExtent,
1.131 + VGUArcType arcType) VGU_APIEXIT;
1.132 +
1.133 +VGU_API_CALL VGUErrorCode VGU_APIENTRY
1.134 + vguComputeWarpQuadToSquare(VGfloat sx0, VGfloat sy0,
1.135 + VGfloat sx1, VGfloat sy1,
1.136 + VGfloat sx2, VGfloat sy2,
1.137 + VGfloat sx3, VGfloat sy3,
1.138 + VGfloat * matrix) VGU_APIEXIT;
1.139 +
1.140 +VGU_API_CALL VGUErrorCode VGU_APIENTRY
1.141 + vguComputeWarpSquareToQuad(VGfloat dx0, VGfloat dy0,
1.142 + VGfloat dx1, VGfloat dy1,
1.143 + VGfloat dx2, VGfloat dy2,
1.144 + VGfloat dx3, VGfloat dy3,
1.145 + VGfloat * matrix) VGU_APIEXIT;
1.146 +
1.147 +VGU_API_CALL VGUErrorCode VGU_APIENTRY
1.148 + vguComputeWarpQuadToQuad(VGfloat dx0, VGfloat dy0,
1.149 + VGfloat dx1, VGfloat dy1,
1.150 + VGfloat dx2, VGfloat dy2,
1.151 + VGfloat dx3, VGfloat dy3,
1.152 + VGfloat sx0, VGfloat sy0,
1.153 + VGfloat sx1, VGfloat sy1,
1.154 + VGfloat sx2, VGfloat sy2,
1.155 + VGfloat sx3, VGfloat sy3,
1.156 + VGfloat * matrix) VGU_APIEXIT;
1.157 +
1.158 +#ifdef __cplusplus
1.159 +} /* extern "C" */
1.160 +#endif
1.161 +
1.162 +#endif /* __VG_1_1_VGU_H */