render_plugin: Begin add window plugin
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 3m7s

This commit is contained in:
Florian RICHER 2025-05-18 19:28:34 +02:00
parent 0ee29a3649
commit ae0a2be097
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
8 changed files with 134 additions and 48 deletions

View file

@ -33,6 +33,13 @@ pub fn init(app: &mut App) {
VulkanPlugin { vulkan_config },
RenderPlugin,
));
// Window::new(app, window_config).unwrap();
// Vulkan::new(app).unwrap();
// 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);
// }