Add Poisson-disk sampling node and Bezier-rs 0.4 release (#1586)

* Add Poisson-disk sampling node and Bezier-rs 0.4 release

* Additional optimizations

* More performance optimizations with help from 0Hypercube

* Add comments
This commit is contained in:
Keavon Chambers
2024-01-28 02:25:46 -08:00
committed by GitHub
parent a7bf6e2459
commit 6b6accfb91
21 changed files with 778 additions and 50 deletions

View File

@@ -28,19 +28,19 @@ wayland = []
[dependencies]
fastnoise-lite = { workspace = true }
rand = { workspace = true, features = [
rand = { workspace = true, default-features = false, features = [
"alloc",
"small_rng",
], default-features = false }
] }
rand_chacha = { workspace = true }
autoquant = { git = "https://github.com/truedoctor/autoquant", optional = true, features = [
"fitting",
] }
graphene-core = { path = "../gcore", features = [
graphene-core = { path = "../gcore", default-features = false, features = [
"std",
"serde",
"alloc",
], default-features = false }
] }
dyn-any = { path = "../../libraries/dyn-any", features = ["derive"] }
graph-craft = { path = "../graph-craft", features = ["serde"] }
vulkan-executor = { path = "../vulkan-executor", optional = true }