[oden] Following the wgpu tutorial

https://sotrh.github.io/learn-wgpu/beginner/tutorial2-surface/#render
This commit is contained in:
John Doty 2023-05-31 17:04:20 -07:00
commit a03c119b4c
5 changed files with 2053 additions and 0 deletions

13
Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "oden"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
env_logger = "0.10"
log = "0.4"
wgpu = "0.16"
winit = "0.28"
pollster = "0.3"