Update [broken]
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 0s

This commit is contained in:
Florian RICHER 2024-11-20 17:45:26 +01:00
parent 8f1172e888
commit 1dc9da0d61
8 changed files with 222 additions and 31 deletions

View file

@ -1,5 +1,3 @@
#![allow(unused_imports)]
pub(self) mod vk_render_context;
pub use vk_render_context::VkRenderContext;
@ -25,5 +23,13 @@ pub(self) mod vk_graphics_pipeline;
pub use vk_graphics_pipeline::VkGraphicsPipeline;
mod vk_render_pass;
pub(self) use vk_render_pass::VkRenderPass;
mod vk_semaphore;
pub(self) use vk_semaphore::VkSemaphore;
mod vk_command_pool;
mod vk_framebuffer;
mod utils;