mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-21 22:34:43 +00:00
f6bc05df94
* Update dependencies * fmt
360 lines
13 KiB
Rust
360 lines
13 KiB
Rust
// Welcome to the deferred lighting example!
|
|
//
|
|
// The idea behind deferred lighting is to render the scene in two steps.
|
|
//
|
|
// First you draw all the objects of the scene. But instead of calculating the color they will have
|
|
// on the screen, you output their characteristics such as their diffuse color and their normals,
|
|
// and write this to images.
|
|
//
|
|
// After all the objects are drawn, you should obtain several images that contain the
|
|
// characteristics of each pixel.
|
|
//
|
|
// Then you apply lighting to the scene. In other words you draw to the final image by taking these
|
|
// intermediate images and the various lights of the scene as input.
|
|
//
|
|
// This technique allows you to apply tons of light sources to a scene, which would be too
|
|
// expensive otherwise. It has some drawbacks, which are the fact that transparent objects must be
|
|
// drawn after the lighting, and that the whole process consumes more memory.
|
|
|
|
use crate::{
|
|
frame::{FrameSystem, Pass},
|
|
triangle_draw_system::TriangleDrawSystem,
|
|
};
|
|
use glam::f32::{Mat4, Vec3};
|
|
use std::{error::Error, sync::Arc};
|
|
use vulkano::{
|
|
command_buffer::allocator::{
|
|
StandardCommandBufferAllocator, StandardCommandBufferAllocatorCreateInfo,
|
|
},
|
|
device::{
|
|
physical::PhysicalDeviceType, Device, DeviceCreateInfo, DeviceExtensions, Queue,
|
|
QueueCreateInfo, QueueFlags,
|
|
},
|
|
image::{view::ImageView, ImageUsage},
|
|
instance::{Instance, InstanceCreateFlags, InstanceCreateInfo},
|
|
memory::allocator::StandardMemoryAllocator,
|
|
swapchain::{
|
|
acquire_next_image, Surface, Swapchain, SwapchainCreateInfo, SwapchainPresentInfo,
|
|
},
|
|
sync::{self, GpuFuture},
|
|
Validated, VulkanError, VulkanLibrary,
|
|
};
|
|
use winit::{
|
|
application::ApplicationHandler,
|
|
event::WindowEvent,
|
|
event_loop::{ActiveEventLoop, EventLoop},
|
|
window::{Window, WindowId},
|
|
};
|
|
|
|
mod frame;
|
|
mod triangle_draw_system;
|
|
|
|
fn main() -> Result<(), impl Error> {
|
|
// Basic initialization. See the triangle example if you want more details about this.
|
|
|
|
let event_loop = EventLoop::new().unwrap();
|
|
let mut app = App::new(&event_loop);
|
|
|
|
event_loop.run_app(&mut app)
|
|
}
|
|
|
|
struct App {
|
|
instance: Arc<Instance>,
|
|
device: Arc<Device>,
|
|
queue: Arc<Queue>,
|
|
memory_allocator: Arc<StandardMemoryAllocator>,
|
|
command_buffer_allocator: Arc<StandardCommandBufferAllocator>,
|
|
rcx: Option<RenderContext>,
|
|
}
|
|
|
|
struct RenderContext {
|
|
window: Arc<Window>,
|
|
swapchain: Arc<Swapchain>,
|
|
images: Vec<Arc<ImageView>>,
|
|
frame_system: FrameSystem,
|
|
triangle_draw_system: TriangleDrawSystem,
|
|
recreate_swapchain: bool,
|
|
previous_frame_end: Option<Box<dyn GpuFuture>>,
|
|
}
|
|
|
|
impl App {
|
|
fn new(event_loop: &EventLoop<()>) -> Self {
|
|
let library = VulkanLibrary::new().unwrap();
|
|
let required_extensions = Surface::required_extensions(event_loop).unwrap();
|
|
let instance = Instance::new(
|
|
library,
|
|
InstanceCreateInfo {
|
|
flags: InstanceCreateFlags::ENUMERATE_PORTABILITY,
|
|
enabled_extensions: required_extensions,
|
|
..Default::default()
|
|
},
|
|
)
|
|
.unwrap();
|
|
|
|
let device_extensions = DeviceExtensions {
|
|
khr_swapchain: true,
|
|
..DeviceExtensions::empty()
|
|
};
|
|
let (physical_device, queue_family_index) = instance
|
|
.enumerate_physical_devices()
|
|
.unwrap()
|
|
.filter(|p| p.supported_extensions().contains(&device_extensions))
|
|
.filter_map(|p| {
|
|
p.queue_family_properties()
|
|
.iter()
|
|
.enumerate()
|
|
.position(|(i, q)| {
|
|
q.queue_flags.intersects(QueueFlags::GRAPHICS)
|
|
&& p.presentation_support(i as u32, event_loop).unwrap()
|
|
})
|
|
.map(|i| (p, i as u32))
|
|
})
|
|
.min_by_key(|(p, _)| match p.properties().device_type {
|
|
PhysicalDeviceType::DiscreteGpu => 0,
|
|
PhysicalDeviceType::IntegratedGpu => 1,
|
|
PhysicalDeviceType::VirtualGpu => 2,
|
|
PhysicalDeviceType::Cpu => 3,
|
|
PhysicalDeviceType::Other => 4,
|
|
_ => 5,
|
|
})
|
|
.unwrap();
|
|
|
|
println!(
|
|
"Using device: {} (type: {:?})",
|
|
physical_device.properties().device_name,
|
|
physical_device.properties().device_type,
|
|
);
|
|
|
|
let (device, mut queues) = Device::new(
|
|
physical_device,
|
|
DeviceCreateInfo {
|
|
enabled_extensions: device_extensions,
|
|
queue_create_infos: vec![QueueCreateInfo {
|
|
queue_family_index,
|
|
..Default::default()
|
|
}],
|
|
..Default::default()
|
|
},
|
|
)
|
|
.unwrap();
|
|
|
|
let queue = queues.next().unwrap();
|
|
|
|
let memory_allocator = Arc::new(StandardMemoryAllocator::new_default(device.clone()));
|
|
let command_buffer_allocator = Arc::new(StandardCommandBufferAllocator::new(
|
|
device.clone(),
|
|
StandardCommandBufferAllocatorCreateInfo {
|
|
secondary_buffer_count: 32,
|
|
..Default::default()
|
|
},
|
|
));
|
|
|
|
App {
|
|
instance,
|
|
device,
|
|
queue,
|
|
memory_allocator,
|
|
command_buffer_allocator,
|
|
rcx: None,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ApplicationHandler for App {
|
|
fn resumed(&mut self, event_loop: &ActiveEventLoop) {
|
|
let window = Arc::new(
|
|
event_loop
|
|
.create_window(Window::default_attributes())
|
|
.unwrap(),
|
|
);
|
|
let surface = Surface::from_window(self.instance.clone(), window.clone()).unwrap();
|
|
let window_size = window.inner_size();
|
|
|
|
let (swapchain, images) = {
|
|
let surface_capabilities = self
|
|
.device
|
|
.physical_device()
|
|
.surface_capabilities(&surface, Default::default())
|
|
.unwrap();
|
|
let (image_format, _) = self
|
|
.device
|
|
.physical_device()
|
|
.surface_formats(&surface, Default::default())
|
|
.unwrap()[0];
|
|
|
|
let (swapchain, images) = Swapchain::new(
|
|
self.device.clone(),
|
|
surface,
|
|
SwapchainCreateInfo {
|
|
min_image_count: surface_capabilities.min_image_count.max(2),
|
|
image_format,
|
|
image_extent: window_size.into(),
|
|
image_usage: ImageUsage::COLOR_ATTACHMENT,
|
|
composite_alpha: surface_capabilities
|
|
.supported_composite_alpha
|
|
.into_iter()
|
|
.next()
|
|
.unwrap(),
|
|
..Default::default()
|
|
},
|
|
)
|
|
.unwrap();
|
|
|
|
(swapchain, images)
|
|
};
|
|
|
|
let images = images
|
|
.into_iter()
|
|
.map(|image| ImageView::new_default(image).unwrap())
|
|
.collect::<Vec<_>>();
|
|
|
|
// Here is the basic initialization for the deferred system.
|
|
let frame_system = FrameSystem::new(
|
|
self.queue.clone(),
|
|
swapchain.image_format(),
|
|
self.memory_allocator.clone(),
|
|
self.command_buffer_allocator.clone(),
|
|
);
|
|
let triangle_draw_system = TriangleDrawSystem::new(
|
|
self.queue.clone(),
|
|
frame_system.deferred_subpass(),
|
|
self.memory_allocator.clone(),
|
|
self.command_buffer_allocator.clone(),
|
|
);
|
|
|
|
let previous_frame_end = Some(sync::now(self.device.clone()).boxed());
|
|
|
|
self.rcx = Some(RenderContext {
|
|
window,
|
|
swapchain,
|
|
images,
|
|
frame_system,
|
|
triangle_draw_system,
|
|
recreate_swapchain: false,
|
|
previous_frame_end,
|
|
});
|
|
}
|
|
|
|
fn window_event(
|
|
&mut self,
|
|
event_loop: &ActiveEventLoop,
|
|
_window_id: WindowId,
|
|
event: WindowEvent,
|
|
) {
|
|
let rcx = self.rcx.as_mut().unwrap();
|
|
|
|
match event {
|
|
WindowEvent::CloseRequested => {
|
|
event_loop.exit();
|
|
}
|
|
WindowEvent::Resized(_) => {
|
|
rcx.recreate_swapchain = true;
|
|
}
|
|
WindowEvent::RedrawRequested => {
|
|
let window_size = rcx.window.inner_size();
|
|
|
|
if window_size.width == 0 || window_size.height == 0 {
|
|
return;
|
|
}
|
|
|
|
rcx.previous_frame_end.as_mut().unwrap().cleanup_finished();
|
|
|
|
if rcx.recreate_swapchain {
|
|
let (new_swapchain, new_images) = rcx
|
|
.swapchain
|
|
.recreate(SwapchainCreateInfo {
|
|
image_extent: window_size.into(),
|
|
..rcx.swapchain.create_info()
|
|
})
|
|
.expect("failed to recreate swapchain");
|
|
let new_images = new_images
|
|
.into_iter()
|
|
.map(|image| ImageView::new_default(image).unwrap())
|
|
.collect::<Vec<_>>();
|
|
|
|
rcx.swapchain = new_swapchain;
|
|
rcx.images = new_images;
|
|
rcx.recreate_swapchain = false;
|
|
}
|
|
|
|
let (image_index, suboptimal, acquire_future) = match acquire_next_image(
|
|
rcx.swapchain.clone(),
|
|
None,
|
|
)
|
|
.map_err(Validated::unwrap)
|
|
{
|
|
Ok(r) => r,
|
|
Err(VulkanError::OutOfDate) => {
|
|
rcx.recreate_swapchain = true;
|
|
return;
|
|
}
|
|
Err(e) => panic!("failed to acquire next image: {e}"),
|
|
};
|
|
|
|
if suboptimal {
|
|
rcx.recreate_swapchain = true;
|
|
}
|
|
|
|
let future = rcx.previous_frame_end.take().unwrap().join(acquire_future);
|
|
let mut frame = rcx.frame_system.frame(
|
|
future,
|
|
rcx.images[image_index as usize].clone(),
|
|
Mat4::IDENTITY,
|
|
);
|
|
let mut after_future = None;
|
|
while let Some(pass) = frame.next_pass() {
|
|
match pass {
|
|
Pass::Deferred(mut draw_pass) => {
|
|
let cb = rcx
|
|
.triangle_draw_system
|
|
.draw(draw_pass.viewport_dimensions());
|
|
draw_pass.execute(cb);
|
|
}
|
|
Pass::Lighting(mut lighting) => {
|
|
lighting.ambient_light([0.1, 0.1, 0.1]);
|
|
lighting.directional_light(Vec3::new(0.2, -0.1, -0.7), [0.6, 0.6, 0.6]);
|
|
lighting.point_light(Vec3::new(0.5, -0.5, -0.1), [1.0, 0.0, 0.0]);
|
|
lighting.point_light(Vec3::new(-0.9, 0.2, -0.15), [0.0, 1.0, 0.0]);
|
|
lighting.point_light(Vec3::new(0.0, 0.5, -0.05), [0.0, 0.0, 1.0]);
|
|
}
|
|
Pass::Finished(af) => {
|
|
after_future = Some(af);
|
|
}
|
|
}
|
|
}
|
|
|
|
let future = after_future
|
|
.unwrap()
|
|
.then_swapchain_present(
|
|
self.queue.clone(),
|
|
SwapchainPresentInfo::swapchain_image_index(
|
|
rcx.swapchain.clone(),
|
|
image_index,
|
|
),
|
|
)
|
|
.then_signal_fence_and_flush();
|
|
|
|
match future.map_err(Validated::unwrap) {
|
|
Ok(future) => {
|
|
rcx.previous_frame_end = Some(future.boxed());
|
|
}
|
|
Err(VulkanError::OutOfDate) => {
|
|
rcx.recreate_swapchain = true;
|
|
rcx.previous_frame_end = Some(sync::now(self.device.clone()).boxed());
|
|
}
|
|
Err(e) => {
|
|
println!("failed to flush future: {e}");
|
|
rcx.previous_frame_end = Some(sync::now(self.device.clone()).boxed());
|
|
}
|
|
}
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|
|
|
|
fn about_to_wait(&mut self, _event_loop: &ActiveEventLoop) {
|
|
let rcx = self.rcx.as_mut().unwrap();
|
|
rcx.window.request_redraw();
|
|
}
|
|
}
|