Cargo Features
[dependencies]
vello_cpu = { version = "0.0.1", default-features = false, features = ["std", "libm", "png"] }
- default = png, std
-
These default features are set whenever
vello_cpu
is added without
somewhere in the dependency tree.default-features = false - std default
-
Get floating point functions from the standard library (likely using your target’s libc).
Enables std of vello_common
- libm
-
Use floating point implementations from libm.
Enables libm, libm of vello_common
- png default
-
Allow loading Pixmap from PNG, and drawing png glyphs.
Enables png of vello_common