mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-18 22:11:32 +00:00

Add RawLoader class that loads and display raw images, and adds a Rasterizer for image data. Image data can be loaded via picture. Loaded image supports Composition, Transformation and Alpha blending. New API Result load(uint32_t* data, uint32_t width, uint32_t height, bool isCopy) noexcept;
9 lines
182 B
Meson
9 lines
182 B
Meson
source_file = [
|
|
'tvgRawLoader.h',
|
|
'tvgRawLoader.cpp',
|
|
]
|
|
|
|
subloader_dep += [declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)]
|