Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 0s
18 lines
395 B
Rust
18 lines
395 B
Rust
pub(self) const LOG_TARGET: &str = "app::vulkan";
|
|
|
|
pub(self) mod vk_render_context;
|
|
pub use vk_render_context::VkRenderContext;
|
|
|
|
pub(self) mod vk_instance;
|
|
pub use vk_instance::VkInstance;
|
|
|
|
pub(self) mod vk_surface;
|
|
pub use vk_surface::VkSurface;
|
|
|
|
pub(self) mod vk_physical_device;
|
|
pub use vk_physical_device::VkPhysicalDevice;
|
|
|
|
pub(self) mod vk_device;
|
|
pub use vk_device::VkDevice;
|
|
|
|
mod utils;
|