Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 0s
Introduce the VkLogicalDevice struct and add surface creation logic in VkInstance. Also, import necessary extensions and refine Vulkan physical device and window handling. Included a dependency on 'anyhow' for error management.
8 lines
No EOL
200 B
Rust
8 lines
No EOL
200 B
Rust
pub(self) mod vk_instance;
|
|
pub(self) mod vk_physical_device;
|
|
pub(self) mod vk_logical_device;
|
|
mod utils;
|
|
mod vk_surface;
|
|
|
|
pub use vk_instance::VkInstance;
|
|
pub use vk_physical_device::VkPhysicalDevice; |