initial rewrite of glpaper using rust wgpu

This commit is contained in:
2026-04-29 21:19:55 +02:00
commit f53340ad8e
6 changed files with 1041 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
[package]
name = "gpupaper"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "gpupaper"
path = "src/main.rs"
[dependencies]
smithay-client-toolkit = "0.20"
wgpu = { version = "29", features = ["wgsl", "glsl"] }
raw-window-handle = "0.6"
anyhow = "1"
clap = { version = "4", features = ["derive"] }
bytemuck = { version = "1", features = ["derive"] }
log = "0.4"
env_logger = "0.11"
wayland-client = { version = "0.31", features = ["system"] }
wayland-backend = { version = "0.3", features = ["client_system"] }
naga = "29"
pollster = "0.4"