mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-15 12:34:30 +00:00

Separate simd implementation by files to maintain them easier. Now we have avx, c, neon version implementation base, we can add implementations to them.
21 lines
437 B
Meson
21 lines
437 B
Meson
source_file = [
|
|
'tvgSwCommon.h',
|
|
'tvgSwRasterC.h',
|
|
'tvgSwRasterAvx.h',
|
|
'tvgSwRasterNeon.h',
|
|
'tvgSwFill.cpp',
|
|
'tvgSwImage.cpp',
|
|
'tvgSwMath.cpp',
|
|
'tvgSwRenderer.h',
|
|
'tvgSwRaster.cpp',
|
|
'tvgSwRenderer.cpp',
|
|
'tvgSwMemPool.cpp',
|
|
'tvgSwRle.cpp',
|
|
'tvgSwShape.cpp',
|
|
'tvgSwStroke.cpp',
|
|
]
|
|
|
|
engine_dep += [declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)]
|