vello/Cargo.toml
Chad Brokaw 016f9de05f Libify piet-wgsl
This creates a new Renderer type that offers fairly simple render_to_texture and render_to_surface methods, the latter of which handles the final blit internally. Also adds a util module with some helpers for device and surface creation.

There is a new winit example in piet-wgsl/examples/winit that shows how to make use of it all. This should be fairly trivial to adapt to glazier/xilem.
2022-11-26 14:27:19 -05:00

20 lines
429 B
TOML

[workspace]
resolver = "2"
members = [
"pgpu-render",
"piet-gpu",
"piet-gpu-derive",
"piet-gpu-hal",
"piet-gpu-types",
"piet-scene",
"piet-wgsl",
"piet-wgsl/examples/winit",
"tests",
]
[patch.crates-io]
# Required for metal support to work on wgpu
# TODO: remove when wgpu is upgraded to 0.15
naga = { git = "https://github.com/gfx-rs/naga", rev="ddcd5d3121150b2b1beee6e54e9125ff31aaa9a2" }