render_plugin: Autocreate swapchain and update
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 9m45s

This commit is contained in:
Florian RICHER 2025-05-18 21:00:22 +02:00
parent ae0a2be097
commit 62d12f2ab8
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
5 changed files with 201 additions and 147 deletions

View file

@ -33,13 +33,4 @@ pub fn init(app: &mut App) {
VulkanPlugin { vulkan_config },
RenderPlugin,
));
// app.get_sub_app_mut(RenderApp)
// .expect("Failed to get RenderApp. Check is RenderPlugin is added.")
// .add_systems(Render, test_system.in_set(RenderSystems::Prepare));
}
// fn test_system(vulkan_device: Res<VulkanDevice>, vulkan_graphics_queue: Res<VulkanGraphicsQueue>) {
// log::trace!("vulkan_device: {:?}", vulkan_device.0);
// log::trace!("vulkan_graphics_queue: {:?}", vulkan_graphics_queue.0);
// }