mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 14:56:42 +00:00
9b6e307569
* add offscreen example * cleanup example * more cleanup * typo * fix clippy * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * edits * i'm loosing my marbles * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * formatting * Update examples/offscreen/Cargo.toml Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * cargo fmt * more correct description * import * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> * Update examples/offscreen/main.rs Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com> --------- Co-authored-by: marc0246 <40955683+marc0246@users.noreply.github.com>
19 lines
330 B
TOML
19 lines
330 B
TOML
[package]
|
|
name = "offscreen"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "offscreen"
|
|
path = "main.rs"
|
|
test = false
|
|
bench = false
|
|
doc = false
|
|
|
|
[dependencies]
|
|
png = { workspace = true }
|
|
vulkano = { workspace = true, features = ["macros"] }
|
|
vulkano-shaders = { workspace = true }
|
|
winit = { workspace = true }
|