|
1 /* |
|
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: NVG Decoder source file |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <s32mem.h> |
|
20 #include <libc/math.h> |
|
21 #include <e32math.h> |
|
22 |
|
23 #include "nvg.h" |
|
24 #include "nvgfittoviewbox.h" |
|
25 #include "NVGUtil.h" |
|
26 |
|
27 #include "NVGCSIcon.h" |
|
28 #include "NVGTLVIcon.h" |
|
29 #include "FloatFixPt.h" |
|
30 |
|
31 #include "NVGIconData.h" |
|
32 |
|
33 /* |
|
34 * may be we should use dynamic_cast? |
|
35 */ |
|
36 #define CSICON(icon) ((CNVGCSIcon *)icon) |
|
37 #define TLVICON(icon) ((CNVGTLVIcon *)icon) |
|
38 |
|
39 enum TNVGFormats |
|
40 { |
|
41 ENVGCS, |
|
42 ENVGTLV |
|
43 }; |
|
44 |
|
45 /* |
|
46 * NVG-CS version |
|
47 */ |
|
48 //const TInt KVersion1 = 1; |
|
49 const TInt KVersion2 = 2; |
|
50 |
|
51 /* |
|
52 * constants for nvg file header offsets |
|
53 */ |
|
54 const TUint8 KNVG_SIGNATURE[] = "nvg"; |
|
55 const TInt KNVG_SIGNATURE_LENGTH = sizeof(KNVG_SIGNATURE) - sizeof('\0'); |
|
56 const TInt KNVG_COMMANDSECTION_OFS = 2; |
|
57 const TInt KNVG_VERSION_OFS = 3; |
|
58 const TInt KNVG_RGBA_OFS = 4; |
|
59 const TInt KNVG_HEADERSIZE_OFS = 4; |
|
60 const TInt KNVG_PATHDATATYPE_OFS = 26; |
|
61 const TInt KNVG_SCALE_OFS = 28; |
|
62 const TInt KNVG_BIAS_OFS = 32; |
|
63 const TInt KNVG_VIEWBOX_X_OFS = 36; |
|
64 const TInt KNVG_VIEWBOX_Y_OFS = 40; |
|
65 const TInt KNVG_VIEWBOX_WIDTH_OFS = 44; |
|
66 const TInt KNVG_VIEWBOX_HEIGHT_OFS = 48; |
|
67 |
|
68 const TInt KNVG_PAINTSECTION_LINEARGRAD_TRANSFORM_OFFSET = 20; |
|
69 const TInt KNVG_PAINTSECTION_RADIALGRAD_TRANSFORM_OFFSET = 24; |
|
70 |
|
71 /* |
|
72 * nvg-cs commands |
|
73 */ |
|
74 const TInt KCMD_SET_FILL_PAINT = 4 << 24; |
|
75 const TInt KCMD_SET_COLOR_RAMP = 6 << 24; |
|
76 const TInt KCMD_DRAW_PATH = 7 << 24; |
|
77 const TInt KCMD_SET_TRANSFORMATION = 8 << 24; |
|
78 const TInt KCMD_SET_STROKE_PAINT = 5 << 24; |
|
79 const TInt KCMD_SET_STROKE_WIDTH = 9 << 24; |
|
80 const TInt KCMD_SET_STROKE_LINE_JOIN_CAP = 10 << 24; |
|
81 const TInt KCMD_SET_STROKE_MITER_LIMIT = 11 << 24; |
|
82 |
|
83 /* |
|
84 * stroke cap style |
|
85 */ |
|
86 const TInt KCAP_BUTT = 1; |
|
87 const TInt KCAP_SQUARE = 2; |
|
88 const TInt KCAP_ROUND = 3; |
|
89 |
|
90 /* |
|
91 * stroke join style |
|
92 */ |
|
93 const TInt KLINE_JOIN_BEVEL = 1; |
|
94 const TInt KLINE_JOIN_MITER = 2; |
|
95 const TInt KLINE_JOIN_ROUND = 3; |
|
96 |
|
97 /* |
|
98 * fill paint type |
|
99 */ |
|
100 const TInt KPAINT_FLAT = 1; |
|
101 const TInt KPAINT_LGRAD = 2; |
|
102 const TInt KPAINT_RGRAD = 3; |
|
103 |
|
104 /* |
|
105 * stroke paint type |
|
106 */ |
|
107 const TInt KSTROKE_LGRAD = 2; |
|
108 const TInt KSTROKE_RGRAD = 3; |
|
109 const TInt KSTROKE_COLOR_RAMP = 4; |
|
110 |
|
111 /* |
|
112 * nvg offset |
|
113 */ |
|
114 const TInt KOffsetReserved1 = 6; |
|
115 |
|
116 /* |
|
117 * transform encoding values |
|
118 */ |
|
119 const TInt KTRANSFORM_COMPLETE = 0; |
|
120 const TInt KTRANSFORM_SCALING = 2; |
|
121 const TInt KTRANSFORM_SHEARING = 4; |
|
122 const TInt KTRANSFORM_ROTATION = 8; |
|
123 const TInt KTRANSFORM_TRANSLATION = 16; |
|
124 |
|
125 #ifdef OPENVG_OBJECT_CACHING |
|
126 const VGfloat KIdentityMatrix[] = |
|
127 { |
|
128 1.0f, 0.0f, 0.0f, |
|
129 0.0f, 1.0f, 0.0f, |
|
130 0.0f, 0.0f ,1.0f |
|
131 }; |
|
132 #endif |
|
133 |
|
134 /* |
|
135 * function to delete array, for basic types |
|
136 */ |
|
137 GLDEF_C void CleanupArray( TAny * aObj ) |
|
138 { |
|
139 delete [] aObj; |
|
140 } |
|
141 |
|
142 /* |
|
143 * function to delete array of TFloatFixArray |
|
144 */ |
|
145 GLDEF_C void CleanupTFloatFixArray( TAny * aObj ) |
|
146 { |
|
147 TFloatFixPt * ff = (TFloatFixPt *)aObj; |
|
148 delete [] ff; |
|
149 } |
|
150 |
|
151 /** |
|
152 * @class TNVGEngineInternal |
|
153 * This class is added to maintain BC. |
|
154 * If you want to add new member variable you can add in this class, without breaking BC. |
|
155 * It is better to add members which are depend on macro's in this class. |
|
156 */ |
|
157 class TNVGEngineInternal |
|
158 { |
|
159 public: |
|
160 TNVGEngineInternal() |
|
161 { |
|
162 #ifdef OPENVG_OBJECT_CACHING |
|
163 iCreatingNVGIcon = 0; |
|
164 iCurrentNVGIcon = 0; |
|
165 #endif |
|
166 } |
|
167 |
|
168 #ifdef OPENVG_OBJECT_CACHING |
|
169 TInt iCreatingNVGIcon; |
|
170 MNVGIcon * iCurrentNVGIcon; |
|
171 #endif |
|
172 }; |
|
173 |
|
174 CNvgEngine::CNvgEngine() |
|
175 : iCurrentBufferSize(1, 1), |
|
176 iPath(VG_INVALID_HANDLE), |
|
177 iPaintFill(VG_INVALID_HANDLE), |
|
178 iPaintStroke( VG_INVALID_HANDLE), |
|
179 iUserStrokePaintColor(0xFFFFFFFF), |
|
180 iRotateApplied(EFalse), |
|
181 iLastPathDataType(0), |
|
182 iPreserveAspectSetting(ENvgPreserveAspectRatio_XmidYmid), |
|
183 iSmilFitSetting(ENvgMeet), |
|
184 iVGImageBinder(0) |
|
185 { |
|
186 } |
|
187 |
|
188 EXPORT_C CNvgEngine* CNvgEngine::NewL() |
|
189 { |
|
190 CNvgEngine* self = new (ELeave) CNvgEngine; |
|
191 CleanupStack::PushL(self); |
|
192 self->ConstructL(); |
|
193 CleanupStack::Pop(self); |
|
194 return self; |
|
195 } |
|
196 |
|
197 void CNvgEngine::ConstructL() |
|
198 { |
|
199 vgSeti(VG_RENDERING_QUALITY, VG_RENDERING_QUALITY_BETTER); |
|
200 vgSeti(VG_FILL_RULE, VG_NON_ZERO); |
|
201 |
|
202 iInternal = new (ELeave) TNVGEngineInternal; |
|
203 iPaintFill = vgCreatePaint(); |
|
204 } |
|
205 |
|
206 EXPORT_C CNvgEngine::~CNvgEngine() |
|
207 { |
|
208 if (iPath != VG_INVALID_HANDLE) |
|
209 { |
|
210 vgDestroyPath(iPath); |
|
211 } |
|
212 |
|
213 if (iPaintFill != VG_INVALID_HANDLE) |
|
214 { |
|
215 vgSetPaint(VG_INVALID_HANDLE, VG_FILL_PATH); |
|
216 vgDestroyPaint(iPaintFill); |
|
217 } |
|
218 |
|
219 if (iPaintStroke != VG_INVALID_HANDLE) |
|
220 { |
|
221 vgSetPaint(VG_INVALID_HANDLE, VG_STROKE_PATH); |
|
222 vgDestroyPaint(iPaintStroke); |
|
223 } |
|
224 |
|
225 |
|
226 #ifdef OPENVG_OBJECT_CACHING |
|
227 if (iInternal) |
|
228 { |
|
229 delete iInternal->iCurrentNVGIcon; |
|
230 } |
|
231 #endif |
|
232 |
|
233 delete iInternal; |
|
234 } |
|
235 |
|
236 /** |
|
237 * @brief Set the angle for rotation of the NVG graphic |
|
238 * @version |
|
239 * @param aAngle counter-clockwise rotation by a given angle (expressed in degrees) |
|
240 * aX, aY point around which the rotation must take place |
|
241 * @return None |
|
242 */ |
|
243 EXPORT_C void CNvgEngine::Rotate(TReal32 aAngle, TReal32 aCentreX, TReal32 aCentreY) __SOFTFP |
|
244 { |
|
245 if(aAngle) |
|
246 { |
|
247 iRotateApplied = ETrue; |
|
248 iCentreX = aCentreX; |
|
249 iCentreY = aCentreY; |
|
250 iRotateAngle = aAngle; |
|
251 } |
|
252 else |
|
253 { |
|
254 iRotateApplied = EFalse; |
|
255 iCentreX = 0; |
|
256 iCentreY = 0; |
|
257 iRotateAngle = 0; |
|
258 } |
|
259 } |
|
260 |
|
261 /** |
|
262 * @brief Gets the viewbox width and height from the NVG bytedata |
|
263 * @version |
|
264 * @param aBuf NVG byte data of the file |
|
265 * @return content dimension |
|
266 */ |
|
267 EXPORT_C TSize CNvgEngine::ContentDimensions(const TDesC8& aBuf) |
|
268 { |
|
269 if (aBuf.Length() < KNVG_VIEWBOX_HEIGHT_OFS + sizeof (TReal32)) |
|
270 { |
|
271 return TSize(0, 0); |
|
272 } |
|
273 |
|
274 const TUint8* lBuf = aBuf.Ptr(); |
|
275 TReal32 lViewboxWidth = * (TReal32*)(lBuf + KNVG_VIEWBOX_WIDTH_OFS); |
|
276 TReal32 lViewboxHeight = * (TReal32*)(lBuf + KNVG_VIEWBOX_HEIGHT_OFS); |
|
277 |
|
278 if (lViewboxWidth > 0 && lViewboxHeight > 0) |
|
279 { |
|
280 return TSize(lViewboxWidth, lViewboxHeight); |
|
281 } |
|
282 else |
|
283 { |
|
284 return TSize(0, 0); |
|
285 } |
|
286 } |
|
287 |
|
288 TInt CNvgEngine::InitializeGC() |
|
289 { |
|
290 if (iPaintFill == VG_INVALID_HANDLE) |
|
291 { |
|
292 iPaintFill = vgCreatePaint(); |
|
293 if (iPaintFill == VG_INVALID_HANDLE) |
|
294 { |
|
295 return OpenVGErrorToSymbianError(vgGetError()); |
|
296 } |
|
297 } |
|
298 |
|
299 vgSetPaint(iPaintFill, VG_FILL_PATH); |
|
300 if (iPaintStroke == VG_INVALID_HANDLE) |
|
301 { |
|
302 iPaintStroke = vgCreatePaint(); |
|
303 if (iPaintStroke == VG_INVALID_HANDLE) |
|
304 { |
|
305 return OpenVGErrorToSymbianError(vgGetError()); |
|
306 } |
|
307 } |
|
308 |
|
309 vgSetPaint( iPaintStroke, VG_STROKE_PATH); |
|
310 |
|
311 return KErrNone; |
|
312 } |
|
313 |
|
314 EXPORT_C void CNvgEngine::ResetNvgState() |
|
315 { |
|
316 if (iPath != VG_INVALID_HANDLE) |
|
317 { |
|
318 vgDestroyPath(iPath); |
|
319 iPath = VG_INVALID_HANDLE; |
|
320 } |
|
321 |
|
322 if (iPaintFill != VG_INVALID_HANDLE) |
|
323 { |
|
324 vgSetPaint(VG_INVALID_HANDLE, VG_FILL_PATH); |
|
325 vgDestroyPaint(iPaintFill); |
|
326 iPaintFill = VG_INVALID_HANDLE; |
|
327 } |
|
328 |
|
329 if (iPaintStroke != VG_INVALID_HANDLE) |
|
330 { |
|
331 vgSetPaint(VG_INVALID_HANDLE, VG_STROKE_PATH); |
|
332 vgDestroyPaint(iPaintStroke); |
|
333 iPaintStroke = VG_INVALID_HANDLE; |
|
334 } |
|
335 } |
|
336 |
|
337 EXPORT_C TInt CNvgEngine::DrawNvg(const TDesC8& aBuf, const TSize& aSize, CFbsBitmap* aDstBitmap, CFbsBitmap* aMask) |
|
338 { |
|
339 TInt error = KErrNone; |
|
340 |
|
341 /* |
|
342 * Get Matrix modes and all caller matrices (must be restored afterwards) |
|
343 */ |
|
344 UpdateClientMatrices(); |
|
345 |
|
346 TRAP(error, DoDrawNVGL(aBuf, aSize, aDstBitmap, aMask)); |
|
347 |
|
348 /* |
|
349 * restore everything as we may have changed matrix mode |
|
350 */ |
|
351 RestoreClientMatrices(); |
|
352 vgSeti(VG_SCISSORING, VG_FALSE); |
|
353 |
|
354 if (error) |
|
355 { |
|
356 NVG_DEBUGP2("Error in NVG rendering %d", error); |
|
357 } |
|
358 return error; |
|
359 } |
|
360 |
|
361 EXPORT_C MNVGIcon * CNvgEngine::CreateNVGIcon(const TDesC8& aBuf, const TSize& aSize) |
|
362 { |
|
363 NVG_DEBUGP1("Creating NVGCSIcon"); |
|
364 |
|
365 MNVGIcon * nvgIcon = 0; |
|
366 |
|
367 /* |
|
368 * this is bit unreadable, |
|
369 * need to find a better design to separate the object caching solution from normal rendering, |
|
370 * but anyway I guess its better than those ifdef's, in that code scanner won't give any warnings |
|
371 */ |
|
372 COND_COM_OC_NOC( |
|
373 { |
|
374 if (iInternal->iCurrentNVGIcon) |
|
375 { |
|
376 delete iInternal->iCurrentNVGIcon; |
|
377 } |
|
378 |
|
379 iInternal->iCurrentNVGIcon = 0; |
|
380 iInternal->iCreatingNVGIcon = 1; |
|
381 |
|
382 if (DrawNvg(aBuf, aSize, 0, 0) != KErrNone) |
|
383 { |
|
384 delete iInternal->iCurrentNVGIcon; |
|
385 iInternal->iCurrentNVGIcon = 0; |
|
386 } |
|
387 |
|
388 iInternal->iCreatingNVGIcon = 0; |
|
389 nvgIcon = iInternal->iCurrentNVGIcon; |
|
390 iInternal->iCurrentNVGIcon = 0; |
|
391 }, |
|
392 { |
|
393 (void)aBuf; |
|
394 (void)aSize; |
|
395 }); |
|
396 |
|
397 return nvgIcon; |
|
398 } |
|
399 |
|
400 void CNvgEngine::DoDrawNVGL(const TDesC8& aBuffer, const TSize& aSize, CFbsBitmap* aDstBitmap, CFbsBitmap* aMask) |
|
401 { |
|
402 TInt drawStatus = KErrNone; |
|
403 |
|
404 if (iCurrentBufferSize != aSize) |
|
405 { |
|
406 iCurrentBufferSize = aSize; |
|
407 } |
|
408 |
|
409 iDstBimtap = aDstBitmap; |
|
410 |
|
411 TDereferencer nvgIconData(aBuffer); |
|
412 |
|
413 TUint8 * signature = nvgIconData.DerefInt8ArrayL(KNVG_SIGNATURE_LENGTH); |
|
414 |
|
415 // checking the 'nvg' signature |
|
416 if (Mem::Compare(signature, KNVG_SIGNATURE_LENGTH, KNVG_SIGNATURE, KNVG_SIGNATURE_LENGTH) != 0) |
|
417 { |
|
418 NVG_DEBUGP1("Not an NVG icon"); |
|
419 User::Leave(KErrNotSupported); |
|
420 } |
|
421 |
|
422 // last two bits are for identifying the nvg type. currently nvg-cs or nvg-tlv |
|
423 TUint16 nvgType = nvgIconData.DerefInt16L(KOffsetReserved1) & 0x03; |
|
424 |
|
425 switch (nvgType) |
|
426 { |
|
427 case ENVGCS: |
|
428 { |
|
429 drawStatus = DrawCommandSectionL(&nvgIconData, aSize, aDstBitmap, aMask); |
|
430 break; |
|
431 } |
|
432 case ENVGTLV: |
|
433 { |
|
434 drawStatus = DrawTLVL(aBuffer, aSize, aDstBitmap, aMask); |
|
435 break; |
|
436 } |
|
437 default: |
|
438 drawStatus = KErrNotSupported; |
|
439 break; |
|
440 } |
|
441 |
|
442 User::LeaveIfError(drawStatus); |
|
443 } |
|
444 |
|
445 TInt CNvgEngine::DrawTLVL(const TDesC8& aBuf, const TSize& aTargetSize, CFbsBitmap* /*aDstBitmap*/, CFbsBitmap * /*aMask*/) |
|
446 { |
|
447 TInt ret = KErrNone; |
|
448 |
|
449 // Try to set user's matrix to path matrix |
|
450 VGfloat origMatrix[9]; |
|
451 vgGetMatrix(origMatrix); |
|
452 |
|
453 vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE); |
|
454 vgLoadMatrix(origMatrix); |
|
455 |
|
456 #ifndef __MIRROR_ |
|
457 vgScale(1.0f, -1.0f); |
|
458 vgTranslate(0, (VGfloat)(-iCurrentBufferSize.iHeight)); |
|
459 #endif |
|
460 |
|
461 /* |
|
462 * this is bit unreadable, |
|
463 * need to find a better design to separate the object caching solution from normal rendering, |
|
464 * but anyway I guess its better than those ifdef's, in that code scanner won't give any warnings |
|
465 */ |
|
466 COND_COM_OC_NOC( |
|
467 { |
|
468 if (iInternal->iCreatingNVGIcon) |
|
469 { |
|
470 iInternal->iCurrentNVGIcon = CNVGTLVIcon::NewL(); |
|
471 TLVICON(iInternal->iCurrentNVGIcon)->SetVGImageBinder(iVGImageBinder); |
|
472 TLVICON(iInternal->iCurrentNVGIcon)->CreateL(aBuf, aTargetSize); |
|
473 } |
|
474 else |
|
475 { |
|
476 CNVGTLVIcon * tlvIcon = CNVGTLVIcon::NewL(); |
|
477 CleanupStack::PushL(tlvIcon); |
|
478 tlvIcon->SetVGImageBinder(iVGImageBinder); |
|
479 tlvIcon->DirectDrawL(aBuf, aTargetSize); |
|
480 CleanupStack::PopAndDestroy(tlvIcon); |
|
481 } |
|
482 |
|
483 }, |
|
484 { |
|
485 CNVGTLVIcon * tlvIcon = CNVGTLVIcon::NewL(); |
|
486 CleanupStack::PushL(tlvIcon); |
|
487 TLVICON(tlvIcon)->SetVGImageBinder(iVGImageBinder); |
|
488 TLVICON(tlvIcon)->DirectDrawL(aBuf, aTargetSize); |
|
489 CleanupStack::PopAndDestroy(tlvIcon); |
|
490 }); |
|
491 |
|
492 vgSeti(VG_SCISSORING, VG_FALSE); |
|
493 |
|
494 return ret; |
|
495 } |
|
496 |
|
497 TInt CNvgEngine::CreatePathHandle(TInt16 aPathDataType, TReal32 aScale, TReal32 aBias) |
|
498 { |
|
499 (void) aScale; |
|
500 (void) aBias; |
|
501 |
|
502 TInt error = KErrNone; |
|
503 |
|
504 if (iLastPathDataType != aPathDataType) |
|
505 { |
|
506 if (iPath != VG_INVALID_HANDLE) |
|
507 { |
|
508 vgDestroyPath(iPath); |
|
509 iPath = VG_INVALID_HANDLE; |
|
510 } |
|
511 } |
|
512 |
|
513 if (iPath == VG_INVALID_HANDLE) |
|
514 { |
|
515 switch (aPathDataType) |
|
516 { |
|
517 case EEightBitEncoding: |
|
518 { |
|
519 iPath = vgCreatePath(VG_PATH_FORMAT_STANDARD, |
|
520 VG_PATH_DATATYPE_S_16, 1.0f/2.0f, 0.0f, 0, 0, |
|
521 VG_PATH_CAPABILITY_APPEND_TO); |
|
522 } |
|
523 break; |
|
524 |
|
525 case ESixteenBitEncoding: |
|
526 { |
|
527 iPath = vgCreatePath(VG_PATH_FORMAT_STANDARD, |
|
528 VG_PATH_DATATYPE_S_16, 1.0f/16.0f, 0.0f, 0, 0, |
|
529 VG_PATH_CAPABILITY_APPEND_TO); |
|
530 } |
|
531 break; |
|
532 |
|
533 case EThirtyTwoBitEncoding: |
|
534 { |
|
535 iPath = vgCreatePath(VG_PATH_FORMAT_STANDARD, |
|
536 VG_PATH_DATATYPE_S_32, 1.0f/65536.0f, 0.0f, 0, 0, |
|
537 VG_PATH_CAPABILITY_APPEND_TO); |
|
538 } |
|
539 break; |
|
540 |
|
541 default: |
|
542 { |
|
543 return KErrCorrupt; |
|
544 } |
|
545 } |
|
546 } |
|
547 |
|
548 if( iPath == VG_INVALID_HANDLE ) |
|
549 { |
|
550 // get the symbian error code |
|
551 error = OpenVGErrorToSymbianError(vgGetError()); |
|
552 |
|
553 if (error == KErrNoMemory) |
|
554 { |
|
555 NVG_DEBUGP1("NVG Error OOM"); |
|
556 ResetNvgState(); |
|
557 } |
|
558 return error; |
|
559 } |
|
560 |
|
561 iLastPathDataType = aPathDataType; |
|
562 |
|
563 return error; |
|
564 } |
|
565 |
|
566 TInt CNvgEngine::DrawCommandSectionL(TDereferencer * aIconData, const TSize& aTargetSize, CFbsBitmap * /*aDstBitmap*/, CFbsBitmap * /*aMask*/) |
|
567 { |
|
568 TInt16 lHeaderSize = aIconData->DerefInt16L(KNVG_HEADERSIZE_OFS); |
|
569 TInt8 NVGVersion = aIconData->DerefInt8L(KNVG_VERSION_OFS); |
|
570 |
|
571 User::LeaveIfError(InitializeGC()); |
|
572 |
|
573 TInt16 lPathDataType = aIconData->DerefInt16L(KNVG_PATHDATATYPE_OFS); |
|
574 TReal32 lScale = aIconData->DerefReal32L(KNVG_SCALE_OFS); |
|
575 TReal32 lBias = aIconData->DerefReal32L(KNVG_BIAS_OFS); |
|
576 |
|
577 User::LeaveIfError(CreatePathHandle(lPathDataType, lScale, lBias)); |
|
578 |
|
579 vgSetPaint(iPaintFill, VG_FILL_PATH); |
|
580 |
|
581 COND_COM_OC_OOC( |
|
582 if (iInternal->iCreatingNVGIcon) |
|
583 { |
|
584 iInternal->iCurrentNVGIcon = CNVGCSIcon::NewL(aIconData->GetPtr()); |
|
585 }); |
|
586 |
|
587 VGfloat lCurrentPathMatrix[9]; |
|
588 vgGetMatrix(lCurrentPathMatrix); |
|
589 |
|
590 vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE); |
|
591 |
|
592 /* |
|
593 * We use the caller's base batrix regardless of which mode the caller was. |
|
594 * The caller may have set the matrix in VG_MATRIX_IMAGE_USER_TO_SURFACE mode |
|
595 * as it thinks it is drawing images (textures). |
|
596 * But even though the texture gets stroked instead, we must use the caller's |
|
597 * transformation matrix. |
|
598 * Everything gets restored to the original values before we return. |
|
599 */ |
|
600 vgLoadMatrix(lCurrentPathMatrix); |
|
601 |
|
602 ApplyScissoring(lCurrentPathMatrix, aTargetSize); |
|
603 |
|
604 /* |
|
605 * set the rotation angle if available |
|
606 */ |
|
607 if (iRotateApplied) |
|
608 { |
|
609 ApplyRotation(); |
|
610 } |
|
611 |
|
612 #ifdef __MIRROR_ |
|
613 vgScale(1.0f, -1.0f); |
|
614 vgTranslate(0, (VGfloat)(-iCurrentBufferSize.iHeight) ); |
|
615 #endif |
|
616 |
|
617 TReal32 lViewboxX = aIconData->DerefReal32L(KNVG_VIEWBOX_X_OFS); |
|
618 TReal32 lViewboxY = aIconData->DerefReal32L(KNVG_VIEWBOX_Y_OFS); |
|
619 TReal32 lViewboxW = aIconData->DerefReal32L(KNVG_VIEWBOX_WIDTH_OFS); |
|
620 TReal32 lViewboxH = aIconData->DerefReal32L(KNVG_VIEWBOX_HEIGHT_OFS); |
|
621 |
|
622 ApplyViewboxToViewPortTransformationL(aTargetSize, lViewboxX, lViewboxY, lViewboxW, lViewboxH); |
|
623 |
|
624 TPtr8 ptr = aIconData->GetPtr(); |
|
625 |
|
626 TInt offsetSectionLength = aIconData->GetLength() - lHeaderSize; |
|
627 TUint8 * offsetPtr = aIconData->DerefInt8ArrayL(offsetSectionLength, lHeaderSize); |
|
628 |
|
629 TDereferencer offsetSection(offsetPtr, offsetSectionLength); |
|
630 |
|
631 TUint16 lOffsetVectorCount = offsetSection.DerefInt16L(); |
|
632 |
|
633 offsetPtr = aIconData->DerefInt8ArrayL(offsetSectionLength - sizeof(TUint16), lHeaderSize + sizeof(TUint16)); |
|
634 TDereferencer offsetVector(offsetPtr, offsetSectionLength - sizeof(TUint16)); |
|
635 |
|
636 idoFill = VG_FALSE; |
|
637 idoStroke = VG_FALSE; |
|
638 |
|
639 TPtr8 offsetTPtr = offsetVector.GetPtr(); |
|
640 |
|
641 TInt commandSectionOffset = lOffsetVectorCount * sizeof(TUint16); |
|
642 TDereferencer commandSection((unsigned char*)(offsetTPtr.Ptr() + commandSectionOffset), |
|
643 aIconData->GetLength() - commandSectionOffset - lHeaderSize - sizeof(TUint16)); |
|
644 |
|
645 // from version 2 onwards command section will start on word boundary |
|
646 if (NVGVersion >= KVersion2 && ((lOffsetVectorCount & 0x01) == 0)) |
|
647 { |
|
648 commandSection.SkipL(2); |
|
649 } |
|
650 |
|
651 TUint16 lCmdCount = commandSection.DerefInt16L(); |
|
652 |
|
653 commandSection.SkipL(KNVG_COMMANDSECTION_OFS); |
|
654 |
|
655 /* |
|
656 * from version 2 onwards there will be a padding added |
|
657 * after the command count to make it word aligned |
|
658 */ |
|
659 if (NVGVersion >= KVersion2) |
|
660 { |
|
661 commandSection.SkipL(2); |
|
662 } |
|
663 |
|
664 ExecuteNVGCSCommandLoopL(lCmdCount, aIconData, &offsetVector, &commandSection, NVGVersion); |
|
665 |
|
666 return KErrNone; |
|
667 } |
|
668 |
|
669 void CNvgEngine::ApplyRotation() |
|
670 { |
|
671 vgTranslate(iCentreX, iCentreY); |
|
672 vgRotate(iRotateAngle); |
|
673 vgTranslate(-iCentreX, -iCentreY); |
|
674 } |
|
675 |
|
676 void CNvgEngine::ApplyScissoring(VGfloat aMatrix[], const TSize& aTargetSize) |
|
677 { |
|
678 /* |
|
679 * calculate the rectangle with respect to the transformation applied |
|
680 * and set the scissoring rect |
|
681 */ |
|
682 TPoint leftBottom = GetTranslatedPoint(aMatrix, TPoint(0, 0)); |
|
683 TPoint leftTop = GetTranslatedPoint(aMatrix, TPoint(0, aTargetSize.iHeight)); |
|
684 TPoint rightBottom = GetTranslatedPoint(aMatrix, TPoint(aTargetSize.iWidth, 0)); |
|
685 TPoint rightTop = GetTranslatedPoint(aMatrix, TPoint(aTargetSize.iWidth,aTargetSize.iHeight)); |
|
686 |
|
687 VGfloat minX = leftBottom.iX; |
|
688 VGfloat minY = leftBottom.iY; |
|
689 VGfloat maxX = leftBottom.iX; |
|
690 VGfloat maxY = leftBottom.iY; |
|
691 |
|
692 minX = MinVal4(leftBottom.iX, leftTop.iX, rightBottom.iX, rightTop.iX); |
|
693 minY = MinVal4(leftBottom.iY, leftTop.iY, rightBottom.iY, rightTop.iY); |
|
694 |
|
695 maxX = MaxVal4(leftBottom.iX, leftTop.iX, rightBottom.iX, rightTop.iX); |
|
696 maxY = MaxVal4(leftBottom.iY, leftTop.iY, rightBottom.iY, rightTop.iY); |
|
697 |
|
698 VGfloat newW = maxX - minX; |
|
699 VGfloat newH = maxY - minY; |
|
700 |
|
701 VGint clipRect[] = {minX, minY, newW, newH}; |
|
702 |
|
703 vgSeti(VG_SCISSORING, VG_TRUE); |
|
704 vgSetiv(VG_SCISSOR_RECTS, 4,(const TInt32*) clipRect); |
|
705 } |
|
706 |
|
707 void CNvgEngine::ApplyViewboxToViewPortTransformationL(const TSize& aTargetSize, TReal32 aViewboxX, TReal32 aViewboxY, TReal32 aViewboxW, TReal32 aViewboxH) |
|
708 { |
|
709 CNvgFitToViewBoxImpl * viewboxTrnsfr = CNvgFitToViewBoxImpl::NewL(); |
|
710 CleanupStack::PushL(viewboxTrnsfr); |
|
711 /* |
|
712 * this is bit unreadable, |
|
713 * need to find a better design to separate the object caching solution from normal rendering, |
|
714 * but anyway I guess its better than those ifdef's, in that code scanner won't give any warnings |
|
715 */ |
|
716 COND_COM_OC_NOC( |
|
717 { |
|
718 if (iInternal->iCreatingNVGIcon) |
|
719 { |
|
720 CSICON(iInternal->iCurrentNVGIcon)->SetViewBox(aViewboxX, aViewboxY, aViewboxW, aViewboxH); |
|
721 CSICON(iInternal->iCurrentNVGIcon)->SetPreserveAspectRatio(iPreserveAspectSetting, iSmilFitSetting); |
|
722 CSICON(iInternal->iCurrentNVGIcon)->Rotate(iRotateAngle, iCentreX, iCentreY); |
|
723 } |
|
724 else |
|
725 { |
|
726 viewboxTrnsfr->SetAlign(iPreserveAspectSetting); |
|
727 viewboxTrnsfr->SetScaling(iSmilFitSetting); |
|
728 |
|
729 if (aViewboxW > 0 && aViewboxH > 0) |
|
730 { |
|
731 viewboxTrnsfr->SetViewBox(aViewboxX, aViewboxY, aViewboxW, aViewboxH); |
|
732 } |
|
733 |
|
734 TInt lWidth = aTargetSize.iWidth; |
|
735 TInt lHeight = aTargetSize.iHeight; |
|
736 |
|
737 viewboxTrnsfr->SetWindowViewportTrans(TRect(0, 0, lWidth, lHeight), TSize(0, 0)); |
|
738 |
|
739 } |
|
740 }, |
|
741 { |
|
742 viewboxTrnsfr->SetAlign(iPreserveAspectSetting); |
|
743 viewboxTrnsfr->SetScaling(iSmilFitSetting); |
|
744 |
|
745 if (aViewboxW > 0 && aViewboxH > 0) |
|
746 { |
|
747 viewboxTrnsfr->SetViewBox(aViewboxX, aViewboxY, aViewboxW, aViewboxH); |
|
748 } |
|
749 |
|
750 TInt lWidth = aTargetSize.iWidth; |
|
751 TInt lHeight = aTargetSize.iHeight; |
|
752 |
|
753 viewboxTrnsfr->SetWindowViewportTrans(TRect(0, 0, lWidth, lHeight), TSize(0, 0)); |
|
754 }); |
|
755 |
|
756 CleanupStack::PopAndDestroy(viewboxTrnsfr); |
|
757 } |
|
758 |
|
759 TDereferencer GetCommandSectionL(TUint16 aOffset, TDereferencer * aIconData, TInt aNVGVersion) |
|
760 { |
|
761 // the max length that the command section can have |
|
762 TInt commandSectionLength = aIconData->GetLength() - aOffset; |
|
763 |
|
764 if (commandSectionLength <= 0) |
|
765 { |
|
766 User::Leave(KErrCorrupt); |
|
767 } |
|
768 |
|
769 TDereferencer section(aIconData->DerefInt8ArrayL(commandSectionLength, aOffset), commandSectionLength); |
|
770 |
|
771 /* |
|
772 * all the section are expected to be word aligned |
|
773 * all of the nvg-cs icon will be version 2 or above |
|
774 * the else won't be there as nvg version will always be greater than 2 |
|
775 */ |
|
776 if (aNVGVersion >= KVersion2) |
|
777 { |
|
778 if (!IsAligned4(aOffset)) |
|
779 { |
|
780 User::Leave(KErrCorrupt); |
|
781 } |
|
782 } |
|
783 else |
|
784 { |
|
785 /* |
|
786 * no need to do anything here as once the nvgdecoder release |
|
787 * its version will be always greater than 2 |
|
788 * infact the check for version will be removed |
|
789 */ |
|
790 } |
|
791 |
|
792 return section; |
|
793 } |
|
794 |
|
795 void CNvgEngine::ExecuteNVGCSCommandLoopL(TUint16 aCommandCount, TDereferencer * aIconData, TDereferencer * aOffsetVector, |
|
796 TDereferencer * aCommandSection, TInt aNVGVersion) |
|
797 { |
|
798 TUint32 transVal; |
|
799 |
|
800 VGfloat lCurrentPathMatrix[9]; |
|
801 |
|
802 vgGetMatrix(lCurrentPathMatrix); |
|
803 |
|
804 TInt32 lOffsetIx = 0; |
|
805 for (TInt i=0; i < aCommandCount; i++) |
|
806 { |
|
807 TUint32 currentCommand = aCommandSection->DerefInt32L(); |
|
808 lOffsetIx = currentCommand & 0x0000ffff; |
|
809 |
|
810 switch (currentCommand & 0xff000000) |
|
811 { |
|
812 case KCMD_SET_FILL_PAINT: |
|
813 { |
|
814 iFillAlpha = (currentCommand & 0x00ff0000) >> 16; |
|
815 TUint16 offset = aOffsetVector->DerefInt16L(lOffsetIx * sizeof(TUint16)); |
|
816 |
|
817 TDereferencer section = GetCommandSectionL(offset, aIconData, aNVGVersion); |
|
818 |
|
819 SetFillPaintL(§ion); |
|
820 |
|
821 break; |
|
822 } |
|
823 |
|
824 case KCMD_SET_COLOR_RAMP: |
|
825 { |
|
826 TUint16 offset = aOffsetVector->DerefInt16L(lOffsetIx * sizeof(TUint16)); |
|
827 |
|
828 TDereferencer section = GetCommandSectionL(offset, aIconData, aNVGVersion); |
|
829 |
|
830 SetColorRampL(§ion); |
|
831 |
|
832 break; |
|
833 } |
|
834 |
|
835 case KCMD_DRAW_PATH: |
|
836 { |
|
837 if ((currentCommand & 0x00010000)) |
|
838 { |
|
839 idoStroke = VG_TRUE; |
|
840 } |
|
841 |
|
842 if ((currentCommand & 0x00020000)) |
|
843 { |
|
844 idoFill = VG_TRUE; |
|
845 } |
|
846 TUint16 offset = aOffsetVector->DerefInt16L(lOffsetIx * sizeof(TUint16)); |
|
847 |
|
848 TDereferencer section = GetCommandSectionL(offset, aIconData, aNVGVersion); |
|
849 |
|
850 DrawPathL(§ion); |
|
851 |
|
852 break; |
|
853 } |
|
854 |
|
855 case KCMD_SET_TRANSFORMATION: |
|
856 { |
|
857 SetTransformL(aCommandSection, transVal, lCurrentPathMatrix); |
|
858 aCommandSection->SkipL(transVal * sizeof(TUint32)); |
|
859 break; |
|
860 } |
|
861 |
|
862 case KCMD_SET_STROKE_PAINT: |
|
863 { |
|
864 iStrokeAlpha = (currentCommand & 0x00ff0000) >> 16; |
|
865 TUint16 offset = aOffsetVector->DerefInt16L(lOffsetIx * sizeof(TUint16)); |
|
866 |
|
867 TDereferencer section = GetCommandSectionL(offset, aIconData, aNVGVersion); |
|
868 |
|
869 SetStrokePaintL(§ion); |
|
870 |
|
871 break; |
|
872 } |
|
873 |
|
874 case KCMD_SET_STROKE_WIDTH: |
|
875 { |
|
876 TReal32 lStrokeWidth; |
|
877 aCommandSection->SkipL(sizeof(TUint32)); |
|
878 |
|
879 /* |
|
880 * check for alignment and copy data if not aligned, else directly convert |
|
881 * version 2 or above guarantees that is always word aligned |
|
882 */ |
|
883 TUint8 * cptr = aCommandSection->DerefInt8ArrayL(sizeof(TReal32), 0); |
|
884 if (aNVGVersion < KVersion2 && !IsAligned4(cptr)) |
|
885 { |
|
886 |
|
887 Mem::Copy(reinterpret_cast<void *>(&lStrokeWidth), |
|
888 reinterpret_cast<void *>(cptr), sizeof(lStrokeWidth)); |
|
889 } |
|
890 else |
|
891 { |
|
892 lStrokeWidth = aCommandSection->DerefReal32L(); |
|
893 } |
|
894 |
|
895 COND_COM_OC(iInternal->iCreatingNVGIcon, |
|
896 CSICON(iInternal->iCurrentNVGIcon)->AddSetStrokeWidthCommandL(lStrokeWidth), |
|
897 vgSetf(VG_STROKE_LINE_WIDTH, lStrokeWidth)); |
|
898 break; |
|
899 } |
|
900 |
|
901 case KCMD_SET_STROKE_MITER_LIMIT: |
|
902 { |
|
903 TReal32 lMiterLimit; |
|
904 aCommandSection->SkipL(sizeof(TUint32)); |
|
905 |
|
906 /* |
|
907 * check for alignment and copy data if not aligned, else directly convert |
|
908 * version 2 or above guarantees that is always word aligned |
|
909 */ |
|
910 TUint8 * cptr = aCommandSection->DerefInt8ArrayL(sizeof(TReal32), 0); |
|
911 |
|
912 if (aNVGVersion < KVersion2 && !IsAligned4(cptr)) |
|
913 { |
|
914 Mem::Copy(reinterpret_cast<void *>(&lMiterLimit), |
|
915 reinterpret_cast<void *>(cptr), sizeof(lMiterLimit)); |
|
916 } |
|
917 else |
|
918 { |
|
919 lMiterLimit = aCommandSection->DerefReal32L(); |
|
920 } |
|
921 |
|
922 COND_COM_OC(iInternal->iCreatingNVGIcon, |
|
923 CSICON(iInternal->iCurrentNVGIcon)->AddSetStrokeMiterLimitCommandL(lMiterLimit), |
|
924 vgSetf(VG_STROKE_MITER_LIMIT, lMiterLimit)); |
|
925 |
|
926 break; |
|
927 } |
|
928 |
|
929 case KCMD_SET_STROKE_LINE_JOIN_CAP: |
|
930 { |
|
931 TUint8 lJoinType =(currentCommand & 0x0000ff00)>>8; |
|
932 TUint8 lCapType = (currentCommand & 0x000000ff); |
|
933 |
|
934 VGCapStyle capStyle; |
|
935 switch(lCapType) |
|
936 { |
|
937 case KCAP_SQUARE: |
|
938 capStyle = VG_CAP_SQUARE; |
|
939 break; |
|
940 case KCAP_ROUND: |
|
941 capStyle = VG_CAP_ROUND; |
|
942 break; |
|
943 case KCAP_BUTT: |
|
944 default: |
|
945 capStyle = VG_CAP_BUTT; |
|
946 break; |
|
947 } |
|
948 |
|
949 VGJoinStyle lineJoinStyle; |
|
950 switch(lJoinType) |
|
951 { |
|
952 case KLINE_JOIN_BEVEL: |
|
953 lineJoinStyle = VG_JOIN_BEVEL; |
|
954 break; |
|
955 case KLINE_JOIN_ROUND: |
|
956 lineJoinStyle = VG_JOIN_ROUND; |
|
957 break; |
|
958 case KLINE_JOIN_MITER: |
|
959 default: |
|
960 lineJoinStyle = VG_JOIN_MITER; |
|
961 break; |
|
962 } |
|
963 |
|
964 COND_COM_OC(iInternal->iCreatingNVGIcon, |
|
965 CSICON(iInternal->iCurrentNVGIcon)->AddStrokeLineJoinCapCommandL(capStyle, lineJoinStyle), |
|
966 vgSeti(VG_STROKE_CAP_STYLE, capStyle); |
|
967 vgSeti(VG_STROKE_JOIN_STYLE, lineJoinStyle);); |
|
968 break; |
|
969 } |
|
970 |
|
971 default: |
|
972 { |
|
973 User::Leave(KErrCorrupt); |
|
974 break; |
|
975 } |
|
976 } |
|
977 |
|
978 // go to the next command |
|
979 aCommandSection->SkipL(sizeof(TUint32)); |
|
980 } |
|
981 } |
|
982 |
|
983 EXPORT_C void CNvgEngine::SetPreserveAspectRatio( |
|
984 TNvgAlignStatusType aPreserveAspectSetting, |
|
985 TNvgMeetOrSliceType aSmilFitSetting) |
|
986 { |
|
987 iPreserveAspectSetting = aPreserveAspectSetting; |
|
988 iSmilFitSetting = aSmilFitSetting; |
|
989 } |
|
990 |
|
991 EXPORT_C void CNvgEngine::SetBackgroundColor(TUint32 aRGBA8888Color) |
|
992 { |
|
993 iBackgroundColor = aRGBA8888Color; |
|
994 } |
|
995 |
|
996 TInt CNvgEngine::SetFillPaintL(TDereferencer * aIconData) |
|
997 { |
|
998 COND_COM_OC_OOC(register int drawingMode = iInternal->iCreatingNVGIcon); |
|
999 |
|
1000 TUint32 lCommonData = aIconData->DerefInt32L(); |
|
1001 TUint lPaintType = lCommonData & 0x07; |
|
1002 TUint16 lSpecifcData = (lCommonData >> 16) & 0xff; |
|
1003 |
|
1004 switch (lPaintType) |
|
1005 { |
|
1006 case KPAINT_LGRAD: |
|
1007 { |
|
1008 iGradPaintFill = iPaintFill; |
|
1009 |
|
1010 COND_COM_OC_OOC( |
|
1011 if (iInternal->iCreatingNVGIcon) |
|
1012 { |
|
1013 // CNVGCSIcon will destroy the paint handle |
|
1014 iGradPaintFill = vgCreatePaint(); |
|
1015 if (iGradPaintFill == VG_INVALID_HANDLE) |
|
1016 { |
|
1017 User::LeaveIfError(CNvgEngine::OpenVGErrorToSymbianError(vgGetError())); |
|
1018 } |
|
1019 }); |
|
1020 |
|
1021 // gradient data, the data will be word aligned |
|
1022 TReal32* lGradData = (TReal32*)aIconData->DerefInt8ArrayL(4 * sizeof(VGfloat), sizeof(TUint32)); |
|
1023 |
|
1024 vgSetParameteri(iGradPaintFill, VG_PAINT_TYPE, VG_PAINT_TYPE_LINEAR_GRADIENT); |
|
1025 vgSetParameterfv(iGradPaintFill, VG_PAINT_LINEAR_GRADIENT, 4, lGradData); |
|
1026 vgSeti(VG_MATRIX_MODE, VG_MATRIX_FILL_PAINT_TO_USER); |
|
1027 |
|
1028 if (lSpecifcData & 0x1) |
|
1029 { |
|
1030 TReal32* lGradMatrix1 = (TReal32*) aIconData->DerefInt8ArrayL(6 * sizeof (VGfloat), |
|
1031 KNVG_PAINTSECTION_LINEARGRAD_TRANSFORM_OFFSET); |
|
1032 |
|
1033 TReal32 lGradMatrix[9] = {lGradMatrix1[0], lGradMatrix1[3], 0.0f, |
|
1034 lGradMatrix1[1], lGradMatrix1[4], 0.0f, |
|
1035 lGradMatrix1[2], lGradMatrix1[5], 1.0f}; |
|
1036 |
|
1037 COND_COM_OC(drawingMode, |
|
1038 CSICON(iInternal->iCurrentNVGIcon)->AddLinearGradientCommandL(4, lGradData, lGradMatrix, iGradPaintFill), |
|
1039 vgLoadMatrix(lGradMatrix);); |
|
1040 } |
|
1041 else |
|
1042 { |
|
1043 COND_COM_OC(drawingMode, |
|
1044 CSICON(iInternal->iCurrentNVGIcon)->AddLinearGradientCommandL(4, lGradData, (VGfloat*)KIdentityMatrix, iGradPaintFill), |
|
1045 vgLoadIdentity()); |
|
1046 } |
|
1047 |
|
1048 COND_COM_OC(drawingMode, ;, |
|
1049 vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE)); |
|
1050 |
|
1051 break; |
|
1052 } |
|
1053 |
|
1054 case KPAINT_RGRAD: |
|
1055 { |
|
1056 // gradient data, the data will be word aligned |
|
1057 TReal32* lGradData = (TReal32*)aIconData->DerefInt8ArrayL(5 * sizeof(VGfloat), sizeof(TUint32)); |
|
1058 iGradPaintFill = iPaintFill; |
|
1059 |
|
1060 COND_COM_OC_OOC( |
|
1061 if (iInternal->iCreatingNVGIcon) |
|
1062 { |
|
1063 iGradPaintFill = vgCreatePaint(); |
|
1064 if (iGradPaintFill == VG_INVALID_HANDLE) |
|
1065 { |
|
1066 User::LeaveIfError(CNvgEngine::OpenVGErrorToSymbianError(vgGetError())); |
|
1067 } |
|
1068 }); |
|
1069 |
|
1070 vgSetParameteri(iGradPaintFill, VG_PAINT_TYPE, VG_PAINT_TYPE_RADIAL_GRADIENT); |
|
1071 vgSetParameterfv(iGradPaintFill, VG_PAINT_RADIAL_GRADIENT, 5, lGradData); |
|
1072 vgSeti(VG_MATRIX_MODE, VG_MATRIX_FILL_PAINT_TO_USER); |
|
1073 |
|
1074 |
|
1075 if (lSpecifcData & 0x1) |
|
1076 { |
|
1077 TReal32* lGradMatrix1 = (TReal32*)aIconData->DerefInt8ArrayL(6 * sizeof (VGfloat), |
|
1078 KNVG_PAINTSECTION_RADIALGRAD_TRANSFORM_OFFSET); |
|
1079 |
|
1080 TReal32 lGradMatrix[9] = {lGradMatrix1[0], lGradMatrix1[3], 0.0f, |
|
1081 lGradMatrix1[1], lGradMatrix1[4], 0.0f, |
|
1082 lGradMatrix1[2], lGradMatrix1[5], 1.0f}; |
|
1083 |
|
1084 COND_COM_OC(drawingMode, |
|
1085 CSICON(iInternal->iCurrentNVGIcon)->AddRadialGradientCommandL(5, lGradData, lGradMatrix, iGradPaintFill), |
|
1086 vgLoadMatrix(lGradMatrix)); |
|
1087 } |
|
1088 else |
|
1089 { |
|
1090 COND_COM_OC(drawingMode, |
|
1091 CSICON(iInternal->iCurrentNVGIcon)->AddRadialGradientCommandL(5, lGradData, (VGfloat*)KIdentityMatrix, iGradPaintFill), |
|
1092 vgLoadIdentity()); |
|
1093 } |
|
1094 |
|
1095 COND_COM_OC(drawingMode, ;, |
|
1096 vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE)); |
|
1097 break; |
|
1098 } |
|
1099 |
|
1100 case KPAINT_FLAT: |
|
1101 { |
|
1102 TUint32 lRgba = aIconData->DerefInt32L(KNVG_RGBA_OFS); |
|
1103 |
|
1104 lRgba = (lRgba & 0xffffff00) | iFillAlpha; |
|
1105 |
|
1106 COND_COM_OC(drawingMode, |
|
1107 CSICON(iInternal->iCurrentNVGIcon)->AddSetColorCommandL(lRgba), |
|
1108 vgSetParameteri(iPaintFill, VG_PAINT_TYPE, VG_PAINT_TYPE_COLOR); |
|
1109 vgSetColor(iPaintFill, lRgba)); |
|
1110 break; |
|
1111 } |
|
1112 |
|
1113 default: |
|
1114 { |
|
1115 User::Leave(KErrCorrupt); |
|
1116 break; |
|
1117 } |
|
1118 } |
|
1119 return KErrNone; |
|
1120 } |
|
1121 |
|
1122 TInt CNvgEngine::SetColorRampL(TDereferencer * aIconData) |
|
1123 { |
|
1124 TUint32 lCommonData = aIconData->DerefInt32L(); |
|
1125 |
|
1126 TInt lStopCount = (lCommonData >> 16) & 0x00ff; |
|
1127 TReal32* lStopData = (TReal32*)aIconData->DerefInt8ArrayL(lStopCount * 5 * sizeof(TReal32), sizeof(TUint32)); |
|
1128 |
|
1129 VGfloat * colorRamps = new (ELeave) VGfloat[lStopCount * 5]; |
|
1130 CleanupStack::PushL(TCleanupItem(CleanupArray, colorRamps)); |
|
1131 |
|
1132 if (iFillAlpha == 0xff) |
|
1133 { |
|
1134 vgSetParameteri(iGradPaintFill, VG_PAINT_COLOR_RAMP_SPREAD_MODE, VG_COLOR_RAMP_SPREAD_PAD); |
|
1135 vgSetParameterfv(iGradPaintFill, VG_PAINT_COLOR_RAMP_STOPS, lStopCount * 5, lStopData); |
|
1136 } |
|
1137 else |
|
1138 { |
|
1139 // Copy color ramps and modify alpha |
|
1140 memcpy(colorRamps, lStopData, lStopCount * 5 * sizeof(VGfloat)); |
|
1141 |
|
1142 VGfloat lAlphaInFloat = iFillAlpha * (1.0f/255.0f); |
|
1143 VGfloat* lAlphaValue = &colorRamps[4]; |
|
1144 |
|
1145 for (int i=0; i<lStopCount; i++) |
|
1146 { |
|
1147 *lAlphaValue *= lAlphaInFloat; |
|
1148 lAlphaValue += 5; |
|
1149 } |
|
1150 |
|
1151 vgSetParameteri(iGradPaintFill, VG_PAINT_COLOR_RAMP_SPREAD_MODE, VG_COLOR_RAMP_SPREAD_PAD); |
|
1152 vgSetParameterfv(iGradPaintFill, VG_PAINT_COLOR_RAMP_STOPS, lStopCount * 5, colorRamps); |
|
1153 } |
|
1154 |
|
1155 CleanupStack::PopAndDestroy(); |
|
1156 return KErrNone; |
|
1157 } |
|
1158 |
|
1159 void CNvgEngine::SetStrokePaintL(TDereferencer * aIconData) |
|
1160 { |
|
1161 COND_COM_OC_OOC(register int drawingMode = iInternal->iCreatingNVGIcon;); |
|
1162 |
|
1163 TUint32 lCommonData = aIconData->DerefInt32L(); |
|
1164 TUint lStrokeType = lCommonData & 0x07; |
|
1165 TUint16 lSpecifcData = (lCommonData >> 16) & 0xff; |
|
1166 |
|
1167 switch (lStrokeType) |
|
1168 { |
|
1169 case KSTROKE_LGRAD: |
|
1170 { |
|
1171 iGradPaintStroke = iPaintStroke; |
|
1172 |
|
1173 COND_COM_OC_OOC( |
|
1174 if (iInternal->iCreatingNVGIcon) |
|
1175 { |
|
1176 iGradPaintStroke = vgCreatePaint(); |
|
1177 User::LeaveIfNull((TAny *)iGradPaintStroke); |
|
1178 }); |
|
1179 |
|
1180 // gradient data, the data will be word aligned |
|
1181 TReal32* lGradData = (TReal32*)aIconData->DerefInt8ArrayL(4 * sizeof(VGfloat), sizeof(TUint32)); |
|
1182 |
|
1183 COND_COM_OC(drawingMode, ;, |
|
1184 vgSetParameteri( iGradPaintStroke, VG_PAINT_TYPE, VG_PAINT_TYPE_LINEAR_GRADIENT ); |
|
1185 vgSetParameterfv( iGradPaintStroke, VG_PAINT_LINEAR_GRADIENT, 4, lGradData); |
|
1186 vgSeti(VG_MATRIX_MODE, VG_MATRIX_STROKE_PAINT_TO_USER)); |
|
1187 |
|
1188 if (lSpecifcData & 0x1) |
|
1189 { |
|
1190 TReal32* lGradMatrix1 = (TReal32*)aIconData->DerefInt8ArrayL(6 * sizeof(VGfloat), |
|
1191 4 + 4 * sizeof(VGfloat)); |
|
1192 TReal32 lGradMatrix[9] = {lGradMatrix1[0], lGradMatrix1[3], 0.0f, |
|
1193 lGradMatrix1[1], lGradMatrix1[4], 0.0f, |
|
1194 lGradMatrix1[2], lGradMatrix1[5], 1.0f}; |
|
1195 |
|
1196 COND_COM_OC(drawingMode, |
|
1197 CSICON(iInternal->iCurrentNVGIcon)->AddStrokeLinearGradientCommandL(4, lGradData, lGradMatrix, iGradPaintStroke), |
|
1198 vgLoadMatrix(lGradMatrix)); |
|
1199 } |
|
1200 else |
|
1201 { |
|
1202 COND_COM_OC(drawingMode, |
|
1203 CSICON(iInternal->iCurrentNVGIcon)->AddStrokeLinearGradientCommandL(4, lGradData, (VGfloat*)KIdentityMatrix, iGradPaintStroke), |
|
1204 vgLoadIdentity()); |
|
1205 } |
|
1206 vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE); |
|
1207 break; |
|
1208 } |
|
1209 |
|
1210 case KSTROKE_RGRAD: |
|
1211 { |
|
1212 iGradPaintStroke = iPaintStroke; |
|
1213 |
|
1214 COND_COM_OC_OOC( |
|
1215 if (iInternal->iCreatingNVGIcon) |
|
1216 { |
|
1217 iGradPaintStroke = vgCreatePaint(); |
|
1218 User::LeaveIfNull((TAny *)iGradPaintStroke); |
|
1219 }); |
|
1220 |
|
1221 // gradient data, the data will be word aligned |
|
1222 TReal32* lGradData = (TReal32*)aIconData->DerefInt8ArrayL(5 * sizeof(VGfloat), sizeof(TUint32)); |
|
1223 |
|
1224 COND_COM_OC(drawingMode, ;, |
|
1225 vgSetParameteri( iGradPaintStroke, VG_PAINT_TYPE, VG_PAINT_TYPE_RADIAL_GRADIENT ); |
|
1226 vgSetParameterfv( iGradPaintStroke, VG_PAINT_RADIAL_GRADIENT, 5, lGradData); |
|
1227 vgSeti(VG_MATRIX_MODE, VG_MATRIX_STROKE_PAINT_TO_USER)); |
|
1228 |
|
1229 if (lSpecifcData & 0x1) |
|
1230 { |
|
1231 TReal32* lGradMatrix1 = (TReal32*)aIconData->DerefInt8ArrayL(6 * sizeof(VGfloat), |
|
1232 4 + 5 * sizeof(VGfloat)); |
|
1233 TReal32 lGradMatrix[9] = {lGradMatrix1[0], lGradMatrix1[3], 0.0f, |
|
1234 lGradMatrix1[1], lGradMatrix1[4], 0.0f, |
|
1235 lGradMatrix1[2], lGradMatrix1[5], 1.0f}; |
|
1236 |
|
1237 COND_COM_OC(drawingMode, |
|
1238 CSICON(iInternal->iCurrentNVGIcon)->AddStrokeRadialGradientCommandL(4, lGradData, lGradMatrix, iGradPaintStroke), |
|
1239 vgLoadMatrix(lGradMatrix)); |
|
1240 } |
|
1241 else |
|
1242 { |
|
1243 COND_COM_OC(drawingMode, |
|
1244 CSICON(iInternal->iCurrentNVGIcon)->AddStrokeRadialGradientCommandL(4, lGradData, (VGfloat*)KIdentityMatrix, iGradPaintStroke), |
|
1245 vgLoadIdentity()); |
|
1246 } |
|
1247 vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE); |
|
1248 break; |
|
1249 } |
|
1250 |
|
1251 case KSTROKE_COLOR_RAMP: |
|
1252 { |
|
1253 TInt lStopCount = lSpecifcData; |
|
1254 TReal32* lStopData = (TReal32*) aIconData->DerefInt8ArrayL(lStopCount * 5 * sizeof(VGfloat), 4); |
|
1255 |
|
1256 if (iStrokeAlpha == 0xff) |
|
1257 { |
|
1258 vgSetParameteri(iGradPaintStroke, VG_PAINT_COLOR_RAMP_SPREAD_MODE, VG_COLOR_RAMP_SPREAD_PAD); |
|
1259 vgSetParameterfv(iGradPaintStroke, VG_PAINT_COLOR_RAMP_STOPS, lStopCount*5, lStopData); |
|
1260 } |
|
1261 else |
|
1262 { |
|
1263 VGfloat * colorRamps = new (ELeave) VGfloat[lStopCount * 5]; |
|
1264 CleanupStack::PushL(TCleanupItem(CleanupArray, colorRamps)); |
|
1265 |
|
1266 memcpy(colorRamps, lStopData, lStopCount * 5 * sizeof(VGfloat)); |
|
1267 |
|
1268 VGfloat lAlphaInFloat = iStrokeAlpha * (1.0f/255.0f); |
|
1269 VGfloat* lAlphaValue = &colorRamps[4]; |
|
1270 |
|
1271 for (int i=0; i<lStopCount; i++) |
|
1272 { |
|
1273 *lAlphaValue *= lAlphaInFloat; |
|
1274 lAlphaValue += 5; |
|
1275 } |
|
1276 |
|
1277 vgSetParameteri(iGradPaintStroke, VG_PAINT_COLOR_RAMP_SPREAD_MODE, VG_COLOR_RAMP_SPREAD_PAD); |
|
1278 vgSetParameterfv(iGradPaintStroke, VG_PAINT_COLOR_RAMP_STOPS, lStopCount * 5, colorRamps); |
|
1279 CleanupStack::PopAndDestroy(); |
|
1280 } |
|
1281 break; |
|
1282 } |
|
1283 |
|
1284 default: |
|
1285 { |
|
1286 TUint32 lRgba = aIconData->DerefInt32L(KNVG_RGBA_OFS); |
|
1287 lRgba = (lRgba & 0xffffff00)|iStrokeAlpha; // replace alpha |
|
1288 |
|
1289 COND_COM_OC(drawingMode, |
|
1290 CSICON(iInternal->iCurrentNVGIcon)->AddStrokeSetColorCommandL(lRgba), |
|
1291 vgSetParameteri( iPaintStroke, VG_PAINT_TYPE, VG_PAINT_TYPE_COLOR ); |
|
1292 vgSetColor(iPaintStroke, lRgba)); |
|
1293 break; |
|
1294 } |
|
1295 } |
|
1296 } |
|
1297 |
|
1298 void CNvgEngine::DrawPathL(TDereferencer * aIconData) |
|
1299 { |
|
1300 TInt numSegments = aIconData->DerefInt16L(); |
|
1301 const VGubyte * pathSegments = aIconData->DerefInt8ArrayL(numSegments, sizeof(TUint16)); |
|
1302 |
|
1303 /* |
|
1304 * verify that what we got is proper data |
|
1305 * for that calculate the path co-ordinate length |
|
1306 * and check that the path data does not overflow |
|
1307 */ |
|
1308 TInt coordinateCount = 0; |
|
1309 for (TInt i = 0; i < numSegments; ++i) |
|
1310 { |
|
1311 switch (pathSegments[i]) |
|
1312 { |
|
1313 case VG_HLINE_TO: |
|
1314 case VG_VLINE_TO: |
|
1315 coordinateCount += 1; |
|
1316 break; |
|
1317 case VG_MOVE_TO: |
|
1318 case VG_LINE_TO: |
|
1319 case VG_SQUAD_TO: |
|
1320 coordinateCount += 2; |
|
1321 break; |
|
1322 case VG_QUAD_TO: |
|
1323 case VG_SCUBIC_TO: |
|
1324 coordinateCount += 4; |
|
1325 break; |
|
1326 case VG_SCCWARC_TO: |
|
1327 case VG_SCWARC_TO: |
|
1328 case VG_LCCWARC_TO: |
|
1329 case VG_LCWARC_TO: |
|
1330 coordinateCount += 5; |
|
1331 break; |
|
1332 case VG_CUBIC_TO: |
|
1333 coordinateCount += 6; |
|
1334 break; |
|
1335 default: |
|
1336 break; |
|
1337 } |
|
1338 } |
|
1339 |
|
1340 // this one is just to check the alignment |
|
1341 TUint8* pathData = aIconData->DerefInt8ArrayL(sizeof(TUint32), sizeof(TUint16) + numSegments); |
|
1342 |
|
1343 /* |
|
1344 * path data need to be word aligned |
|
1345 * alignment are done according to the path format |
|
1346 */ |
|
1347 TUint sizeofpathdata = sizeof(TUint32); |
|
1348 TUint alignSkip = 0; |
|
1349 TUint8 * alignedPtr = 0; |
|
1350 if (iLastPathDataType == ESixteenBitEncoding) |
|
1351 { |
|
1352 alignedPtr = Align2(pathData); |
|
1353 sizeofpathdata = sizeof(TUint16); |
|
1354 } |
|
1355 else if (iLastPathDataType == EThirtyTwoBitEncoding) |
|
1356 { |
|
1357 alignedPtr = Align4(pathData); |
|
1358 } |
|
1359 else |
|
1360 { |
|
1361 User::Leave(KErrCorrupt); // no other path data type is supported |
|
1362 } |
|
1363 |
|
1364 alignSkip = alignedPtr - pathData; |
|
1365 |
|
1366 /* |
|
1367 * check to see whether we have enough path data |
|
1368 */ |
|
1369 aIconData->IsSafeL(coordinateCount * sizeofpathdata + alignSkip, sizeof(TUint16) + numSegments); |
|
1370 |
|
1371 pathData = alignedPtr; |
|
1372 |
|
1373 VGint paintMode = (idoFill ? VG_FILL_PATH : 0)|(idoStroke ? VG_STROKE_PATH : 0); |
|
1374 if (paintMode == 0) |
|
1375 { |
|
1376 paintMode = VG_FILL_PATH; |
|
1377 } |
|
1378 |
|
1379 COND_COM_OC(iInternal->iCreatingNVGIcon, |
|
1380 { |
|
1381 VGPath path = CreatePath(); |
|
1382 |
|
1383 if (path != VG_INVALID_HANDLE) |
|
1384 { |
|
1385 vgAppendPathData(path, numSegments, pathSegments, pathData); |
|
1386 } |
|
1387 else |
|
1388 { |
|
1389 CSICON(iInternal->iCurrentNVGIcon)->AddPathDataL(numSegments, pathSegments, pathData); |
|
1390 } |
|
1391 CSICON(iInternal->iCurrentNVGIcon)->AddDrawPathCommandL(path, paintMode); |
|
1392 }, |
|
1393 { |
|
1394 vgClearPath(iPath, VG_PATH_CAPABILITY_APPEND_TO); |
|
1395 |
|
1396 vgAppendPathData(iPath, numSegments, pathSegments, pathData); |
|
1397 vgDrawPath(iPath, paintMode); |
|
1398 }); |
|
1399 |
|
1400 idoStroke = VG_FALSE; |
|
1401 idoFill = VG_FALSE; |
|
1402 } |
|
1403 |
|
1404 #ifdef OPENVG_OBJECT_CACHING |
|
1405 VGPath CNvgEngine::CreatePath() |
|
1406 { |
|
1407 VGPath path = VG_INVALID_HANDLE; |
|
1408 switch (iLastPathDataType) |
|
1409 { |
|
1410 case EEightBitEncoding: |
|
1411 { |
|
1412 path = vgCreatePath(VG_PATH_FORMAT_STANDARD, |
|
1413 VG_PATH_DATATYPE_S_16, 1.0f/2.0f, 0.0f, 0, 0, |
|
1414 VG_PATH_CAPABILITY_APPEND_TO); |
|
1415 } |
|
1416 break; |
|
1417 |
|
1418 case ESixteenBitEncoding: |
|
1419 { |
|
1420 path = vgCreatePath(VG_PATH_FORMAT_STANDARD, |
|
1421 VG_PATH_DATATYPE_S_16, 1.0f/16.0f, 0.0f, 0, 0, |
|
1422 VG_PATH_CAPABILITY_APPEND_TO); |
|
1423 } |
|
1424 break; |
|
1425 |
|
1426 case EThirtyTwoBitEncoding: |
|
1427 { |
|
1428 path = vgCreatePath(VG_PATH_FORMAT_STANDARD, |
|
1429 VG_PATH_DATATYPE_S_32, 1.0f/65536.0f, 0.0f, 0, 0, |
|
1430 VG_PATH_CAPABILITY_APPEND_TO); |
|
1431 } |
|
1432 break; |
|
1433 |
|
1434 default: |
|
1435 { |
|
1436 |
|
1437 } |
|
1438 break; |
|
1439 } |
|
1440 return path; |
|
1441 } |
|
1442 #endif |
|
1443 |
|
1444 void CNvgEngine::SetTransformL(TDereferencer * aIconData, TUint32 & aCounter, const VGfloat* aCurrentMatrix) |
|
1445 { |
|
1446 |
|
1447 COND_COM_OC(iInternal->iCreatingNVGIcon, ;, |
|
1448 vgLoadMatrix(aCurrentMatrix)); |
|
1449 |
|
1450 TUint32 lCommonData = aIconData->DerefInt32L(); |
|
1451 TUint32 lTransformType = (lCommonData & 0x00ff0000)>>16 ; |
|
1452 |
|
1453 VGfloat matrixTemp[9] = { |
|
1454 1.0f, 0.0f, 0.0f, |
|
1455 0.0f, 1.0f, 0.0f, |
|
1456 0.0f, 0.0f, 1.0f }; |
|
1457 |
|
1458 aCounter = 0; |
|
1459 |
|
1460 if (lTransformType != 1) |
|
1461 { |
|
1462 if (lTransformType == KTRANSFORM_COMPLETE) |
|
1463 { |
|
1464 matrixTemp[0] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1465 matrixTemp[4] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1466 matrixTemp[3] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1467 matrixTemp[1] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1468 matrixTemp[6] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1469 matrixTemp[7] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1470 } |
|
1471 else |
|
1472 { |
|
1473 if (lTransformType & KTRANSFORM_ROTATION) |
|
1474 { |
|
1475 //vgScale |
|
1476 matrixTemp[0] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1477 matrixTemp[4] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1478 |
|
1479 //vgShear |
|
1480 matrixTemp[3] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1481 matrixTemp[1] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1482 } |
|
1483 else |
|
1484 { |
|
1485 if (lTransformType & KTRANSFORM_SCALING) |
|
1486 { |
|
1487 //vgScale |
|
1488 matrixTemp[0] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1489 matrixTemp[4] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1490 } |
|
1491 |
|
1492 if (lTransformType & KTRANSFORM_SHEARING) |
|
1493 { |
|
1494 //vgShear |
|
1495 matrixTemp[3] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1496 matrixTemp[1] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1497 } |
|
1498 } |
|
1499 |
|
1500 if (lTransformType & KTRANSFORM_TRANSLATION) |
|
1501 { |
|
1502 //vgTranslate |
|
1503 matrixTemp[6] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1504 matrixTemp[7] = aIconData->DerefReal32L((++aCounter) * sizeof (VGfloat)); |
|
1505 } |
|
1506 } |
|
1507 |
|
1508 COND_COM_OC(iInternal->iCreatingNVGIcon, |
|
1509 CSICON(iInternal->iCurrentNVGIcon)->AddSetTransformCommandL(matrixTemp, 1), |
|
1510 vgMultMatrix(matrixTemp)); |
|
1511 } |
|
1512 else |
|
1513 { |
|
1514 COND_COM_OC(iInternal->iCreatingNVGIcon, |
|
1515 CSICON(iInternal->iCurrentNVGIcon)->AddSetTransformCommandL(matrixTemp, 0), ;); |
|
1516 } |
|
1517 } |
|
1518 |
|
1519 void CNvgEngine::GenerateMask(CFbsBitmap* aMask) |
|
1520 { |
|
1521 if (!aMask || aMask->SizeInPixels() != iCurrentBufferSize) |
|
1522 { |
|
1523 return; |
|
1524 } |
|
1525 |
|
1526 const TDisplayMode KMaskDisplayMode = aMask->DisplayMode(); |
|
1527 |
|
1528 if (KMaskDisplayMode != EGray256 && KMaskDisplayMode != EGray2) |
|
1529 { |
|
1530 return; |
|
1531 } |
|
1532 |
|
1533 const TInt KOriginalFilterMasks = vgGeti(VG_FILTER_CHANNEL_MASK); |
|
1534 const TInt KStride = CFbsBitmap::ScanLineLength(iCurrentBufferSize.iWidth, KMaskDisplayMode); |
|
1535 |
|
1536 // Change to get alpha values from OpenVG |
|
1537 vgSeti(VG_FILTER_CHANNEL_MASK, VG_ALPHA); |
|
1538 |
|
1539 VGImageFormat format = (KMaskDisplayMode == EGray256) ? VG_A_8 : VG_BW_1; |
|
1540 |
|
1541 aMask->LockHeap(); |
|
1542 |
|
1543 /* |
|
1544 * Get data address of last line and move upwards (negative stride) |
|
1545 * OpenVG uses Cartesian coordinate system and Symbian uses Screen coordinate system. |
|
1546 */ |
|
1547 TUint* data = (TUint*)((TUint)aMask->DataAddress() + (KStride * (iCurrentBufferSize.iHeight - 1 ))); |
|
1548 |
|
1549 vgReadPixels(data, -KStride, format, 0, 0, |
|
1550 iCurrentBufferSize.iWidth, iCurrentBufferSize.iHeight); |
|
1551 aMask->UnlockHeap(); |
|
1552 |
|
1553 // Set back the original filter-masks |
|
1554 vgSeti(VG_FILTER_CHANNEL_MASK, KOriginalFilterMasks); |
|
1555 } |
|
1556 |
|
1557 void CNvgEngine::ClearBackground() |
|
1558 { |
|
1559 TUint32 rgba = (iBackgroundColor << 8) | (iBackgroundColor >> 24); |
|
1560 TInt32 r, g, b, a; |
|
1561 r = (TInt)((rgba & 0xFF000000) >> 24); |
|
1562 g = (TInt)((rgba & 0x00FF0000) >> 16); |
|
1563 b = (TInt)((rgba & 0x0000FF00) >> 8); |
|
1564 a = (TInt)(rgba & 0x000000FF); |
|
1565 |
|
1566 r += r >> 7; g += g >> 7; b += b >> 7; a += a >> 7; |
|
1567 |
|
1568 const VGfloat KInverse255 = 1.0f/256.0f; |
|
1569 const VGfloat clearColor[4] = { (KInverse255 * VGfloat (r)), |
|
1570 (KInverse255 * VGfloat (g)), |
|
1571 (KInverse255 * VGfloat (b)), |
|
1572 (KInverse255 * VGfloat (a)) }; |
|
1573 |
|
1574 vgSeti(VG_SCISSORING, VG_FALSE); |
|
1575 vgSetfv(VG_CLEAR_COLOR, 4, clearColor); |
|
1576 vgClear(0, 0, iCurrentBufferSize.iWidth, iCurrentBufferSize.iHeight); |
|
1577 vgSeti(VG_SCISSORING, VG_TRUE); |
|
1578 } |
|
1579 |
|
1580 TBool CNvgEngine::IsIdentity(VGfloat array[]) |
|
1581 { |
|
1582 return ((array[0] == 1.0f && array[4] == 1.0f && array[8] == 1.0f)&& |
|
1583 (array[1] == 0.0f && array[2] == 0.0f && array[3] == 0.0f && |
|
1584 array[5] == 0.0f && array[6] == 0.0f && array[7] == 0.0f)); |
|
1585 } |
|
1586 |
|
1587 TInt CNvgEngine::OpenVGErrorToSymbianError( TInt aError ) |
|
1588 { |
|
1589 TInt error = KErrNone; |
|
1590 switch (aError) |
|
1591 { |
|
1592 case VGU_OUT_OF_MEMORY_ERROR: |
|
1593 case VG_OUT_OF_MEMORY_ERROR: |
|
1594 { |
|
1595 error = KErrNoMemory; |
|
1596 break; |
|
1597 } |
|
1598 |
|
1599 case VG_ILLEGAL_ARGUMENT_ERROR: |
|
1600 case VGU_ILLEGAL_ARGUMENT_ERROR: |
|
1601 { |
|
1602 error = KErrArgument; |
|
1603 break; |
|
1604 } |
|
1605 |
|
1606 case VG_UNSUPPORTED_PATH_FORMAT_ERROR: |
|
1607 case VG_UNSUPPORTED_IMAGE_FORMAT_ERROR: |
|
1608 { |
|
1609 error = KErrNotSupported; |
|
1610 break; |
|
1611 } |
|
1612 |
|
1613 case VG_IMAGE_IN_USE_ERROR: |
|
1614 { |
|
1615 error = KErrInUse; |
|
1616 break; |
|
1617 } |
|
1618 |
|
1619 case VG_BAD_HANDLE_ERROR: |
|
1620 case VGU_BAD_HANDLE_ERROR: |
|
1621 { |
|
1622 error = KErrBadHandle; |
|
1623 break; |
|
1624 } |
|
1625 |
|
1626 case VG_PATH_CAPABILITY_ERROR: |
|
1627 case VGU_PATH_CAPABILITY_ERROR: |
|
1628 case VGU_BAD_WARP_ERROR: |
|
1629 { |
|
1630 error = KErrUnknown; |
|
1631 break; |
|
1632 } |
|
1633 |
|
1634 case VG_NO_CONTEXT_ERROR: |
|
1635 { |
|
1636 error = KErrNotReady; |
|
1637 break; |
|
1638 } |
|
1639 |
|
1640 default: |
|
1641 { |
|
1642 error = KErrUnknown; |
|
1643 } |
|
1644 } |
|
1645 |
|
1646 return error; |
|
1647 } |
|
1648 |
|
1649 void CNvgEngine::UpdateClientMatrices() |
|
1650 { |
|
1651 iMatrixMode = vgGeti(VG_MATRIX_MODE); |
|
1652 vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE); |
|
1653 vgGetMatrix(iPathMatrix); |
|
1654 vgSeti(VG_MATRIX_MODE, VG_MATRIX_IMAGE_USER_TO_SURFACE); |
|
1655 vgGetMatrix(iImageMatrix); |
|
1656 vgSeti(VG_MATRIX_MODE, iMatrixMode); |
|
1657 } |
|
1658 |
|
1659 void CNvgEngine::RestoreClientMatrices() |
|
1660 { |
|
1661 vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE); |
|
1662 vgLoadMatrix(iPathMatrix); |
|
1663 vgSeti(VG_MATRIX_MODE, VG_MATRIX_IMAGE_USER_TO_SURFACE); |
|
1664 vgLoadMatrix(iImageMatrix); |
|
1665 vgSeti(VG_MATRIX_MODE, iMatrixMode); |
|
1666 } |
|
1667 |
|
1668 TPoint CNvgEngine::GetTranslatedPoint(VGfloat aTRMatrix[9], TPoint aPoint) |
|
1669 { |
|
1670 TPoint trPoint; |
|
1671 |
|
1672 trPoint.iX = aTRMatrix[0] * aPoint.iX + aTRMatrix[3] * aPoint.iY + aTRMatrix[6]; |
|
1673 trPoint.iY = aTRMatrix[1] * aPoint.iX + aTRMatrix[4] * aPoint.iY + aTRMatrix[7]; |
|
1674 |
|
1675 return trPoint; |
|
1676 } |
|
1677 |
|
1678 VGfloat CNvgEngine::MinVal4(VGfloat x1, VGfloat x2, VGfloat x3, VGfloat x4 ) |
|
1679 { |
|
1680 VGfloat min = x1; |
|
1681 |
|
1682 if (min > x2) |
|
1683 { |
|
1684 min = x2; |
|
1685 } |
|
1686 if (min > x3) |
|
1687 { |
|
1688 min = x3; |
|
1689 } |
|
1690 if (min > x4) |
|
1691 { |
|
1692 min = x4; |
|
1693 } |
|
1694 |
|
1695 return min; |
|
1696 } |
|
1697 |
|
1698 VGfloat CNvgEngine::MaxVal4(VGfloat x1, VGfloat x2, VGfloat x3, VGfloat x4 ) |
|
1699 { |
|
1700 VGfloat max = x1; |
|
1701 |
|
1702 if (max < x2) |
|
1703 { |
|
1704 max = x2; |
|
1705 } |
|
1706 if (max < x3) |
|
1707 { |
|
1708 max = x3; |
|
1709 } |
|
1710 if (max < x4) |
|
1711 { |
|
1712 max = x4; |
|
1713 } |
|
1714 |
|
1715 return max; |
|
1716 } |
|
1717 |