thorvg/meson_options.txt
Hermet Park 9e1ba8d2c0 sw_engine: introduce avx simd instruction
avx is the cutting edge method for intel & amd cpus simd instruction.
We are going to support this feature for the desktop environment (instead of sse)

You can turn on this with configuration something like this:

$meson . build -Dvectors=avx

Current patch supports only for raster solid color

Change-Id: I068ba30a1f63d480415e2762f8021fc8d6d28a39
2020-07-11 20:58:09 +09:00

17 lines
414 B
Meson

option('engines',
type: 'array',
choices: ['sw', 'gl'],
value: ['sw', 'gl'],
description: 'Enable Rasterizer Engine in thorvg')
option('loaders',
type: 'array',
choices: ['', 'svg'],
value: ['svg'],
description: 'Enable Vector File Loader in thorvg')
option('vectors',
type: 'array',
choices: ['', 'avx'],
value: [''],
description: 'Enable CPU Vectorization(SIMD) in thorvg')