Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

ThorVG

It is a open-source project, it develops a lightweight and portable motion graphics engine that can be utilized across all systems.
Collective - Host: opensource - https://opencollective.com/thorvg - Website: https://www.thorvg.org/ - Code: https://github.com/thorvg/thorvg

loader svg: displaying SVG images without the specified viewBox attribute

If no viewBox attribute is given, the height and width attributes are used
to establish the view...

github.com/thorvg/thorvg - 332012dd6b47e8d0a7c019fa373fd49f58a8ab44 authored over 3 years ago by Mira Grudzinska <[email protected]>
common: code refactoring.

renamed internal function, no logical changes.

github.com/thorvg/thorvg - f1feebf047b30ad47290f9b42835892d0e35f242 authored over 3 years ago by Hermet Park <[email protected]>
sw_engine: adding a check before stroke fill dereference

The crash was observed for empty shapes.

github.com/thorvg/thorvg - a13561e9c514f6acc412dc5c6333ac8b0e14cd2c authored over 3 years ago by Mira Grudzinska <[email protected]>
common initializer: counting engine init count properly.

Manage the reference count in common so that
all common resources can be initialized/terminated ...

github.com/thorvg/thorvg - 6276e209a7bc18f25b7a05d15e8ac941e4067058 authored over 3 years ago by Hermet Park <[email protected]>
examples: ignoring pictures other than svgs in Stress.cpp

The picture->size() function does not work for raw/png pictures.
As a consequence enabling both,...

github.com/thorvg/thorvg - 0f9d3ff6e9104ac3e14f2a8f716000daff734105 authored over 3 years ago by Mira Grudzinska <[email protected]>
loader SvgLoader: Fix for coding convention

github.com/thorvg/thorvg - 5d81fe24464097759649996c286822418ace3b88 authored over 3 years ago by JunsuChoi <[email protected]>
loader SvgLoader: return null if transform attribute invalid

In transform matrix parsing, null is returned if any of the matrices are invalid.

github.com/thorvg/thorvg - b75e7ea91a291c78473b0851563c343bf0ff480f authored over 3 years ago by JunsuChoi <[email protected]>
loaders svg: fix a wrongly handles the corner case.

Stop the internel loop quick as possible, and state must be reset.

github.com/thorvg/thorvg - d3a73f7ee97cc441745b299ef4e8a04477d9fe49 authored over 3 years ago by Hermet Park <[email protected]>
loaders svg: code refactoring.

keep it clean & neat within tvg coding convention.

github.com/thorvg/thorvg - b3559ecf56f803765d233160e41f309ea4ac5829 authored over 3 years ago by Hermet Park <[email protected]>
wasm: fix compile errors.

github.com/thorvg/thorvg - d2c04f6037682946f18604003bfbd9d7160e2619 authored over 3 years ago by Hermet Park <[email protected]>
sync versioning 0.1.0

github.com/thorvg/thorvg - 352f843d2bc50def489c231677a8663caff4d1de authored over 3 years ago by Hermet Park <[email protected]>
loader svg: fix composition(mask/clip) issue.

composition target missed transform of its source.

That brings incorrect composition area.

Thi...

github.com/thorvg/thorvg - 5c9016158e8c78d3dadadc46c24629dad34d6e63 authored over 3 years ago by Hermet Park <[email protected]>
sw_engine: fixing stroke gradient

Instead of checking the stroke's fill, the shape's fill was checked.
As a result the improper ra...

github.com/thorvg/thorvg - 30ee03002b7dbf6e218627b931e0cd130626a0eb authored over 3 years ago by Mira Grudzinska <[email protected]>
loaders svg: set default color for composition paint.

not only clippath but alpha compositions might also have any valid color.
Set it default and let...

github.com/thorvg/thorvg - 35fdc9a2780efe06669dbadc054b7e222f9479a7 authored over 3 years ago by Hermet Park <[email protected]>
loaders svg: prevent composition setting if the result shape is invalid.

Current loader could return invalid shapes -default, from _appendShape()-
by a certain interpret...

github.com/thorvg/thorvg - 903df3da6a0b8b4abf4a904ac0ac3dcfbd84ae5c authored over 3 years ago by Hermet Park <[email protected]>
loaders svg: code refactoring

clean up code and remove unnecessary internal class.

this also helps to reduce binary size by 5...

github.com/thorvg/thorvg - e1eb98af7996d06fffa70656de15fdf9f376d47f authored over 3 years ago by Hermet Park <[email protected]>
loaders svg: ++ log info for wrong situation.

if either log is printed, we need to improve the composition method.

github.com/thorvg/thorvg - adf1312a5e5029fe414951746a81ebbac53fc4be authored over 3 years ago by Hermet Park <[email protected]>
loaders svg: code refactoring

++ clean code.

github.com/thorvg/thorvg - 605a3bf175cebbfc704f8c58d8dc2f96fea94320 authored over 3 years ago by Hermet Park <[email protected]>
loaders svg: fix invalid clip path result.

tvg engine expects the valid clippath with valid colors,
loaders set any colors values to enable...

github.com/thorvg/thorvg - 6239eca92f995cfa6d1b4c307af732a2be180f87 authored almost 4 years ago by Hermet Park <[email protected]>
sw_engine: fix GradientStroke crash

++ strict null check.

github.com/thorvg/thorvg - 818d24fc7092fda21c6c660ff18f4f75ebd962c4 authored almost 4 years ago by Hermet Park <[email protected]>
sw_engine raster: refactoring the gradient rastering functions

The gradient rastering functions have been splitted into translucent
and opaque.

github.com/thorvg/thorvg - 9d7a264610782ba9066a7369349306f642dca570 authored almost 4 years ago by Mira Grudzinska <[email protected]>
sw_engine: removed unnecessary function parameter

In the fillFetchLinear function the offset parameter was removed.
The destination address may be...

github.com/thorvg/thorvg - 8284b3fdfcef3e24a4407ae3db8accbf7ec03b29 authored almost 4 years ago by Mira Grudzinska <[email protected]>
sw_engine: rastering the opaque radial gradient with masking

In the radial gradient rastering functions, the part supporting
the (inverse) masking was added.

github.com/thorvg/thorvg - 6b5db72f6797be1f5753ffaf3f9bc90bae71d551 authored almost 4 years ago by Mira Grudzinska <[email protected]>
sw_engine raster: adding antialiasing to the gradient rastering functions

The gradient rastering functions with composition did not take
antialiasing into account. The mi...

github.com/thorvg/thorvg - fcad63ec1fb1f8b44bde73b0d6edb52d1bf439ba authored almost 4 years ago by Mira Grudzinska <[email protected]>
binary optimization

remove inlining to reduce size by 22kb.

github.com/thorvg/thorvg - 4557ed6c4b7b6c4692c2ec25116dea416bfdb058 authored almost 4 years ago by Hermet Park <[email protected]>
common paint: fix wrong fast clippath logic.

it missed to check clippath's transform in fasttrack logic.
now it additionally check it...

github.com/thorvg/thorvg - 6388a6a9dd37c59fb747703f01729670084388d0 authored almost 4 years ago by Hermet Park <[email protected]>
Update README.md

github.com/thorvg/thorvg - 34bce8d371872a88fa19f690a69fc9a3b1ef31cc authored almost 4 years ago by Hermet Park <[email protected]>
sw_engine raster: ++ precise alpha multiplying

previously alpha multiplying operation doesn't have perfect precision,
could loss 1 pixel since ...

github.com/thorvg/thorvg - 9a40b6426189c37abece95ed81d832b428d8f5be authored almost 4 years ago by Hermet Park <[email protected]>
Update CONTRIBUTING.md

github.com/thorvg/thorvg - 9a1d7ec84155bde3542b42c2b464acf8b20ac20d authored almost 4 years ago by Hermet Park <[email protected]>
loader png: code refactoring

Seperate behaviors open/read/close,
free/close pngimage properly,
add copyright for files.

Ther...

github.com/thorvg/thorvg - cd0c7486f38d9e19bfabcf6e873753d475c214e0 authored almost 4 years ago by Hermet Park <[email protected]>
meson: revise png loader meson script.

We hate spagettie code, not even build script.
this revise it to keep the build script consiste...

github.com/thorvg/thorvg - 9e725226da1561556435e34e81e488fa699297bf authored almost 4 years ago by Hermet Park <[email protected]>
sw_engine: unnecessary memory allocation and variables has been removed

github.com/thorvg/thorvg - 44f10698eda8b397f5a39443a708369e1ce692d1 authored almost 4 years ago by Mira Grudzinska <[email protected]>
loader loaderMgr: add a useful debug message.

Print info if file format is not supported.

github.com/thorvg/thorvg - fdd14a51a739acd922b5592dec393b0b0da09395 authored almost 4 years ago by Hermet Park <[email protected]>
examples: revise picture sample code.

github.com/thorvg/thorvg - 6cc7dfdc568b05456f93eb4521a997999342f2d0 authored almost 4 years ago by Hermet Park <[email protected]>
minor fixes

github.com/thorvg/thorvg - ac3e848cfe70a275d9aa82dc0fac6f67048d2100 authored almost 4 years ago by Mateusz Palkowski <[email protected]>
Added png loading example

github.com/thorvg/thorvg - 1046ed2c40f1070f582ccdf2d302fd609858d33f authored almost 4 years ago by Mateusz Palkowski <[email protected]>
Added libpng based png loading

github.com/thorvg/thorvg - 832568e07ae69ac33ad32928527d15d4422c6ba6 authored almost 4 years ago by Mateusz Palkowski <[email protected]>
sw_engine: fixing linear gradient rastering for shapes with composition

Masking and Inverse masking are for now rastered properly only for the linear
gradients without ...

github.com/thorvg/thorvg - fe32ca8de7b39129b4f8a2a15c4a5bcd1e1ece6c authored almost 4 years ago by Mira Grudzinska <[email protected]>
gradients: paint linerar gradients properly with mask composition method

@Issues: 243

Change-Id: Ie26a0b903af94a46683348e3fb7d8b554576997c

github.com/thorvg/thorvg - cd6fb4f48320873464c36b36c699c87d9236f838 authored almost 4 years ago by Patryk Kaczmarek <[email protected]>
capi: changing function name

For uniformity of the functions naming the function name
tvg_shape_stroke_get_gradient changed t...

github.com/thorvg/thorvg - f62ee4fc846bee1c507896fa7df4bdd4f9361992 authored almost 4 years ago by Mira Grudzinska <[email protected]>
doc: update sample images.

github.com/thorvg/thorvg - c7f09bb333f10f490fb260c4a76c775275377fa3 authored almost 4 years ago by Hermet Park <[email protected]>
Update README.md

github.com/thorvg/thorvg - bf6c0770dc91cac19571b09828b4331631cdb2aa authored almost 4 years ago by Hermet Park <[email protected]>
common: fix wrong viewport region.

in the clip rect, viewport must be accumulated to the smaller one.
this patch improves that corn...

github.com/thorvg/thorvg - 4a19e5b9f62ddce964e25b7e7c5a12ebed27cb24 authored almost 4 years ago by Hermet Park <[email protected]>
common sw_engine: optimize single rectangle ClipPath.

If ClipPath is a singular rectangle,
we don't need to apply this to all children nodes to adjust...

github.com/thorvg/thorvg - f1fe36d8f604c47dfb9752acf3b60e3fadcb313c authored almost 4 years ago by Hermet Park <[email protected]>
sw_engine: code refactoring

1. unified clip & bounding box in rle processing
2. unified outline boundingbox functions betwe...

github.com/thorvg/thorvg - 4a8f45577ae5ca3566f830d4175fa680df13ed33 authored almost 4 years ago by Hermet Park <[email protected]>
examples: allow a desianted main thread capacity.

Maximum threads is not always peak the highest performance,
tvg examples guide user the proper t...

github.com/thorvg/thorvg - 19fc4f4b37aa15f983d677d637504eb8887f356e authored almost 4 years ago by Hermet Park <[email protected]>
common paint: fix memory leak case.

free the previous composition target if any,
before reset with the new one.

github.com/thorvg/thorvg - aa68481fb704fe41ef8fff3413be22fa2e5a4bc5 authored almost 4 years ago by Hermet Park <[email protected]>
updated copyright

github.com/thorvg/thorvg - 1a7d41ce717cc1db7e2d6d0649dfe78b4ad49599 authored almost 4 years ago by Hermet Park <[email protected]>
common engines: code refactoring

Introduce RenderRegion structure for region data
to simplify the methods paratemers.

also de...

github.com/thorvg/thorvg - e5381da22390ceb52345e1cdd98cc5182ef7f596 authored almost 4 years ago by Hermet Park <[email protected]>
svg_loader: ommiting xml entities in the svg file (#278)

SVG files created using 'sketch' may contain xml entities,
which are not understandable by the ...

github.com/thorvg/thorvg - 234a9b2f93d593085bd8db7417a5685564a8f185 authored almost 4 years ago by Mira Grudzinska <[email protected]>
loader svg: fix coding convention

github.com/thorvg/thorvg - 79f1ba8516cbf6f74095e342479514c07f29681d authored almost 4 years ago by Hermet Park <[email protected]>
examples: revise StrokeGradient

renamed GradientStroke & repositioned visuals.

github.com/thorvg/thorvg - e4a28869d152377393a69095f005747f864a019a authored almost 4 years ago by Hermet Park <[email protected]>
svg_loader: applying AlphaMask during scene building

The AlphaMask composition case was omitted in the _sceneBuilderHelper().

github.com/thorvg/thorvg - f0540d753a86c70fb396977373a11312262ca9c9 authored almost 4 years ago by Mira Grudzinska <[email protected]>
initializer: add reference counting for the engines initialization.

Introduced the reference counting for the backend engines so that
tvg prevents unpaired engine i...

github.com/thorvg/thorvg - e8cf21a3c9291776e273b0582ea4b6c233a6285d authored almost 4 years ago by Hermet Park <[email protected]>
common picture: fix crash at picture duplication.

A duplicated picture needs to access internal picture loader data
to get its properties while r...

github.com/thorvg/thorvg - 53d23e986284f3de61582000c26f628f8a140f35 authored almost 4 years ago by Hermet Park <[email protected]>
paint: clip was substracted from the array for any composite method

Only ClipPath composite method should cause clips subtraction.

github.com/thorvg/thorvg - 95c022da1f8e39cdcf2a7bbde9ccedfabbe42d1b authored almost 4 years ago by Mira Grudzinska <[email protected]>
common shape: Fixed appendArc for negative values.

Description:
Fixed appendArc API for -90 angles. In that case it was drawn in wrong
direction.

...

github.com/thorvg/thorvg - 623a90de7b50ade6dc17694b7062ceeb55d61f62 authored almost 4 years ago by Michal Szczecinski <[email protected]>
loaders svg: remove unnecessary move call, move is guaranteed at the return value.

warning: moving a temporary object prevents copy elision [-Wpessimizing-move]

github.com/thorvg/thorvg - c40823d70eb4f3d446937c461d6237e5ac5d23b3 authored almost 4 years ago by Hermet Park <[email protected]>
sw_engine: optimize rle clipping

We don't need to copy the rle data unecessarily,
we can just replace the completed clip rle.

github.com/thorvg/thorvg - 105a59b5b30247dc2c91493c968e767a716fd6c0 authored almost 4 years ago by Hermet Park <[email protected]>
examples: clean up mask resources.

These are not proper for our svg examples.

github.com/thorvg/thorvg - 0faea8a9ab7d46f14b1ddf0bbb72c62ba69c375f authored almost 4 years ago by Hermet Park <[email protected]>
sw_engine rleClipPath: Modify clippath spans creation size.

When updating rle for clipped area, realloc size should be larger than spans size.
so this patch...

github.com/thorvg/thorvg - ac1434bb740fda522336e06bd5468e6af8f43e3e authored almost 4 years ago by JunsuChoi <[email protected]>
loader SvgSceneBuilder: Add root node to clipping viewBox.

If the boundary of scene created through the scenebuilder is larger than the viewbox,
scene(SVG'...

github.com/thorvg/thorvg - 631c1e565168b28f4566cd892ff1311754b65a87 authored almost 4 years ago by JunsuChoi <[email protected]>
common shape: revise Shape::reset() api.

reset Path is useful rather than reset all properties.

github.com/thorvg/thorvg - 8ff14050507a6533faaca24b9781e1563c5dffdc authored almost 4 years ago by Hermet Park <[email protected]>
This is too untable.... Stress in example is crashed by this.

Revert "svg_loader: limiting the ploted area of svg to viewBox"

This reverts commit 2bb108b2f13...

github.com/thorvg/thorvg - 9f0fafa5df2dff7040c2966003bcebf7cf7a0cdc authored almost 4 years ago by Hermet Park <[email protected]>
common canvas: initialize member variable.

to shutdown the static code analizer report.

github.com/thorvg/thorvg - efd4741a7887ec2fc0fe83397578b2f65d4c153d authored almost 4 years ago by Hermet Park <[email protected]>
svg_loader: limiting the ploted area of svg to viewBox

The 'viewBox' element given in the svg file determines
the coordinates of the plotted area. Clip...

github.com/thorvg/thorvg - 2bb108b2f13432ac140d9be08daae189fe9c61c5 authored almost 4 years ago by Mira Grudzinska <[email protected]>
sw_engine fill: correct value loss by data conversion.

github.com/thorvg/thorvg - 09842419548755e56c6b24cb1ee3fbea72c12457 authored almost 4 years ago by Hermet Park <[email protected]>
example: Duplicate.cpp modified

Duplication of the Picture with a raw image is added

github.com/thorvg/thorvg - ecf47fcec8205765395f34f078cd14332ebcd2b6 authored almost 4 years ago by Mira Grudzinska <[email protected]>
updated AUTHORS

github.com/thorvg/thorvg - 699a751b1bfdd6666da8a2cb1475157078b99ab6 authored almost 4 years ago by Hermet Park <[email protected]>
Revert "sw_engine shape/image: substituting logical 'and' with 'or'"

This reverts commit 74b27c74af220e30fef274e07f8ad4f19430d217.

This patch breaks Stroke example....

github.com/thorvg/thorvg - 5e01fd8b4bb8d38e82ea626a659f22724e2667e1 authored almost 4 years ago by Hermet Park <[email protected]>
sw_engine raster: functions optimization in the image block

The alpha value calculation pulled out outside the inner loop
to reduce the number of unnecessar...

github.com/thorvg/thorvg - b5bc73849c6637d5e4c67263f7dcf92a8ec4ac09 authored almost 4 years ago by Mira Grudzinska <[email protected]>
sw_engine shape/image: substituting logical 'and' with 'or'

In the case when the height or width of the bounding box is 0
it is not necessary to calculate Rle.

github.com/thorvg/thorvg - 74b27c74af220e30fef274e07f8ad4f19430d217 authored almost 4 years ago by Mira Grudzinska <[email protected]>
example: AnimateMask images change

Change-Id: Iacd407c3e186f1f91c2bcbd9099f0b83a9dba264

github.com/thorvg/thorvg - 6e59116137e4c7cd9cab6ad00a3a5f3207679820 authored almost 4 years ago by Patryk Kaczmarek <[email protected]>
Update README.md

github.com/thorvg/thorvg - 7809ea4181140f1a0ef0b7a259cefc06245c77cd authored almost 4 years ago by Hermet Park <[email protected]>
Update README.md

updated svg part.

github.com/thorvg/thorvg - 1c1f185142f7be5888c05ef3f43b23cf5dbd8d67 authored almost 4 years ago by Hermet Park <[email protected]>
svg_loader SvgPath: Remove unnecessary optimization code

This condition(optimization) is not a step suggested by arc implementation.
https://www.w3.org/T...

github.com/thorvg/thorvg - 355cc8c2530a095613f02c06ed2cec56813cd63c authored almost 4 years ago by JunsuChoi <[email protected]>
svg_loader SvgLoader: Fix copy conditions for stop of gradient

When getting a linked stop list, if there is no existing stop list
in current gradient, it is co...

github.com/thorvg/thorvg - f590571e3a54f74616a9fa5a09591cacaaf8f0d0 authored almost 4 years ago by JunsuChoi <[email protected]>
svgloader: fixing linear gradient transformation

Gradient stop points were incorrectly transformed when building
the scene in the SVG loader.

github.com/thorvg/thorvg - a173b16ed5b1b90452130533fe6a6d57af2738c5 authored almost 4 years ago by Mira Grudzinska <[email protected]>
capi: fix incorrect composite api.

Api prototype is completely wrong, now it's corrected.

github.com/thorvg/thorvg - cb425fa4bbc763cee1f2f86719263bbd8115665d authored almost 4 years ago by Hermet Park <[email protected]>
svgloader: fixing SVG image display when viewBox size is not given

When viewBox is not given its dimensions should be determined
by the height and width parameters

github.com/thorvg/thorvg - a72be6159d28424d8454300290593bc671bdda94 authored almost 4 years ago by Mira Grudzinska <[email protected]>
sw_engine fill: fixing the infinite loop condition

Fixed in the fillFetchLinear() function.

github.com/thorvg/thorvg - 07e6c476a85373abd8307804b5f1f3acbe2a5b8d authored almost 4 years ago by Mira Grudzinska <[email protected]>
svgloader: fillRule value passed to the shape

The value was loadeed but not set to the shape.

github.com/thorvg/thorvg - d03db583e5ab6bf461aeb204f023d5599cb3f95b authored almost 4 years ago by Mira Grudzinska <[email protected]>
canvas: replacement of the bitwise OR operator with the logical one

Bitwise logical operators do not perform short-circuiting.

github.com/thorvg/thorvg - 692e100f9a2e86ec8a00f7031dc9379488a9f9bb authored almost 4 years ago by Mira Grudzinska <[email protected]>
sw_engine fill: fix wrong gradient transformation

There transformation logic was not identical between shape & gradient

gradient transform was ...

github.com/thorvg/thorvg - d522c9d45ef525bd2bc5197e59809feec9cd91e4 authored almost 4 years ago by Hermet Park <[email protected]>
Fix typo in CONTRIBUTING.md

github.com/thorvg/thorvg - 7147ebf21a267cbb97670b75356e868f68bbf4a4 authored almost 4 years ago by Juyeong Lee <[email protected]>
examples images: correct file change mode.

For consistency, thorvg keeps file chmod => 664.

github.com/thorvg/thorvg - e64ff980b08b88ce840bf08000b0c74c6dc1588f authored almost 4 years ago by Hermet Park <[email protected]>
scene: fix a composition regression bug.

Pre-condition is broken when this commit come - b60a773d12ef5ab558e95066b2deecea8d859e8c

Both c...

github.com/thorvg/thorvg - 6cd587ba5f36c83c1f42cbcf6347affd5d1fb3e3 authored almost 4 years ago by Hermet Park <[email protected]>
Update CONTRIBUTING.md

fix typo

github.com/thorvg/thorvg - 8c635e9591296b291f73560bc9033263c8cf4c26 authored almost 4 years ago by Hermet Park <[email protected]>
updated community guide resource.

github.com/thorvg/thorvg - a05ddfcd812e041596f32be9c86627c150e1a2d8 authored almost 4 years ago by Hermet Park <[email protected]>
common: optimize scene composition

Scene could avoid composition if its children is only child (non scene)

This patch bring it c...

github.com/thorvg/thorvg - b60a773d12ef5ab558e95066b2deecea8d859e8c authored almost 4 years ago by Hermet Park <[email protected]>
Update CONTRIBUTING.md

updated guideline

github.com/thorvg/thorvg - a576c8f4cd86d619550c82b446ecf16946ef31cc authored almost 4 years ago by Hermet Park <[email protected]>
examples: new AnimateMask example and svg images with masks

Change-Id: I609597a5ecb710e9af9939a3028eeef691b66188

github.com/thorvg/thorvg - 03d48159e3f08f49a5ac324a63acb9ba6f936b54 authored almost 4 years ago by Patryk Kaczmarek <[email protected]>
Update CONTRIBUTING.md

++updated

github.com/thorvg/thorvg - f378105c43189951a4da64c2941f0baa10a0623f authored almost 4 years ago by Hermet Park <[email protected]>
sw_engine: fix a composition crash issue.

Added an exceptional handling for out of buffer boundary.

github.com/thorvg/thorvg - c0362cb69c0cb5ff65689a7a5feb7968ffde1d66 authored almost 4 years ago by Hermet Park <[email protected]>
canvas: fix crash issue.

When canvas target size is changed, it need to update all retained paints again
so that they can...

github.com/thorvg/thorvg - 69ff5a484b847883a43131abcb19694ca1e2dfef authored almost 4 years ago by Hermet Park <[email protected]>
fixed all wasm build breaks.

github.com/thorvg/thorvg - 197879f2efa69762b8ea4f5e5197dd071e3acdd6 authored almost 4 years ago by Hermet Park <[email protected]>
Issue 180 example (#212)

* examples: Added resize_cb to Capi example.

resize_cb in capi example is used to verify cras...

github.com/thorvg/thorvg - d6d65c3bd6c1df9b331c2adbf92124402fda6605 authored almost 4 years ago by Michal Szczecinski <[email protected]>
sw common: Fixed crash in rasterRGBA32

Description:
Crash was observed in examples when composite object was used.
It was caused becaus...

github.com/thorvg/thorvg - f0ab7f4002eb17d73098f38e65247a2017bac615 authored almost 4 years ago by Michal Szczecinski <[email protected]>
sw_engine raster: fixing rasterization of an image with InvMask

In case of the image rasterization with an inverse mask the opacity
was omitted and the alpha va...

github.com/thorvg/thorvg - 5e1d3772ca43af225d4e4c7bf375210d72b9c02a authored almost 4 years ago by Mira Grudzinska <[email protected]>
sw_engine: enhance log message.

more informational log is better.

github.com/thorvg/thorvg - 028e1fa2514a7983eb0843bb35048bbf6771ed88 authored almost 4 years ago by Hermet Park <[email protected]>