This commit is contained in:
Robin Appelman 2023-12-10 16:54:57 +01:00
commit 87be76c88a
3 changed files with 3 additions and 2 deletions

2
Cargo.lock generated
View file

@ -2837,7 +2837,7 @@ dependencies = [
[[package]]
name = "vtf"
version = "0.1.5"
source = "git+https://github.com/roman901/vtf-rs?rev=a346cb6d85c2766fe7e30b0a70b6f38e67c3a6c9#a346cb6d85c2766fe7e30b0a70b6f38e67c3a6c9"
source = "git+https://github.com/roman901/vtf-rs?rev=55670df#55670df9acd8463d9e8a78d1217d1570385f3582"
dependencies = [
"byteorder 1.5.0",
"err-derive",

View file

@ -21,7 +21,7 @@ criterion = "0.4.0"
iai = "0.1"
steamlocate = "1.2.1"
vbsp = { version = "0.2.0", git = "https://github.com/icewind1991/vbsp" }
vtf = { version = "0.1.5", git = "https://github.com/roman901/vtf-rs", rev = "a346cb6d85c2766fe7e30b0a70b6f38e67c3a6c9" }
vtf = { version = "0.1.5", git = "https://github.com/roman901/vtf-rs", rev = "55670df" }
vpk = { version = "0.1.4", git = "https://github.com/icewind1991/vpk-rs", branch = "perf" }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"

View file

@ -141,6 +141,7 @@ fn main() -> Result<(), Error> {
ui.radio_value(&mut debug_type, DebugType::COLOR, "Color");
ui.radio_value(&mut debug_type, DebugType::DEPTH, "Depth");
ui.radio_value(&mut debug_type, DebugType::ORM, "ORM");
ui.radio_value(&mut debug_type, DebugType::UV, "UV");
ui.label("View options");
ui.add(Slider::new(&mut depth_max, 1.0..=30.0).text("Depth max"));