mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-25 01:12:57 +00:00

Copied only necessary decoding functions from the lodepng opensource. See: https://lodev.org/lodepng/ additional changes: - disabled crc for the optimal size. - converted the format bgr -> rgb for our png example. Still we don't have a concrete idea for the image formats, We should fix the converting methods between bgra <-> rgba. @Issue: https://github.com/Samsung/thorvg/issues/594
11 lines
222 B
Meson
11 lines
222 B
Meson
source_file = [
|
|
'tvgLodePng.h',
|
|
'tvgPngLoader.h',
|
|
'tvgLodePng.cpp',
|
|
'tvgPngLoader.cpp',
|
|
]
|
|
|
|
subloader_dep += [declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)]
|