lights, shader work, cube, anti aliasing

This commit is contained in:
2024-06-07 01:32:44 -04:00
parent a2bbe6440c
commit 5bf3f20ea4
7 changed files with 295 additions and 314 deletions

20
Cargo.lock generated
View File

@@ -801,6 +801,7 @@ dependencies = [
"indexmap",
"log",
"num-traits",
"pp-rs",
"rustc-hash",
"spirv",
"termcolor",
@@ -1092,6 +1093,7 @@ dependencies = [
"pollster",
"rand",
"simba",
"smaa",
"wgpu",
"winit",
]
@@ -1123,6 +1125,15 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2"
[[package]]
name = "pp-rs"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb458bb7f6e250e6eb79d5026badc10a3ebb8f9a15d1fff0f13d17c71f4d6dee"
dependencies = [
"unicode-xid",
]
[[package]]
name = "ppv-lite86"
version = "0.2.17"
@@ -1362,6 +1373,15 @@ dependencies = [
"version_check",
]
[[package]]
name = "smaa"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08dff9e842337b9aaa0e4e920676dc582cc6e6cd1056393ed209524a1758146b"
dependencies = [
"wgpu",
]
[[package]]
name = "smallvec"
version = "1.13.2"