Implemented the Vulkan debug callback to intercept internal driver warnings and validation layer errors, converting them into tracing logs. Resolved unused assignment and unsafe pointer 2024 edition warnings. Added doc comments for the Renderer and its initialization logic.
10 lines
134 B
TOML
10 lines
134 B
TOML
[package]
|
|
name = "renderer"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
ash = "0.38.0"
|
|
thiserror = "2.0.18"
|
|
tracing = "0.1.44"
|