This plugin replaces core loop & rendering in Bevy with Vulkano backend. Basically this allows you to be fully in control of your render pipelines with Vulkano without having to bother yourself with engine architecture much. Just roll your pipelines and have fun.
This makes it extremely easy to do following with Vulkano: - Windowless Apps - Multiple Windows - Event handling
From Vulkano's perspective, this plugin contains functionality for resizing, multiple windows & utility for beginning and ending the frame. However, you'll need to do everything in between yourself. A good way to get started is to look at the examples.
This should be especially useful for learning graphics pipelines from scratch using Vulkano.
VulkanoWinitPlugin
. It also adds WindowPlugin
and anything that's needed.egui
and bevy_vulkano
with feature gui
.rust
fn main() {
App::new()
// Vulkano configs (Modify this if you want to add features to vulkano (vulkan backend).
// You can also disable primary window opening here
.insert_non_send_resource(VulkanoWinitConfig::default())
.add_plugin(bevy::input::InputPlugin::default())
// Window settings for primary window (if you want no window, modify config above)
.add_plugin(VulkanoWinitPlugin {
window_descriptor: WindowDescriptor {
width: 1920.0,
height: 1080.0,
title: "Bevy Vulkano".to_string(),
present_mode: bevy::window::PresentMode::Immediate,
resizable: true,
mode: WindowMode::Windowed,
..WindowDescriptor::default()
}
})
.run();
}
rust
/// Creates a render pipeline. Add this system with app.add_startup_system(create_pipelines).
fn create_pipelines_system(mut commands: Commands, vulkano_windows: NonSend<VulkanoWindows>) {
let primary_window = vulkano_windows.get_primary_window_renderer().unwrap();
// Create your render pass & pipelines (MyRenderPass could contain your pipelines, e.g. draw_circle)
let my_pipeline = YourPipeline::new(
primary_window.graphics_queue(),
primary_window.swapchain_format(),
);
// Insert as a resource
commands.insert_resource(my_pipeline);
}
```rust
/// This system should be added either at CoreStage::PostUpdate
or CoreStage::Last
. You could also create your own
/// render stage and place it after CoreStage::Update
.
fn mypipelinerendersystem(
mut vulkanowindows: NonSendMut
// Access the swapchain image directly
let final_image = primary_window.swapchain_image_view();
// Draw your pipeline
let after_your_pipeline = pipeline.draw(final_image);
// Finish Frame by passing your last future. Wait on the future if needed.
primary_window.present(after_your_pipeline, true);
} ```
This library re-exports egui_winit_vulkano
.
bash
cargo run --example multi_window_gui --features example_has_gui
cargo run --example windowless_compute
cargo run --example game_of_life
While you can use bevy_vulkano
with bevy 0.9
,
the windowing features are not quite up to date with latest bevy_window
.
Feel free to make contributions if some feature is missing.
Feel free to open a PR to improve or fix anything that you see would be useful.