2019-03-15 03:05:07 +00:00
|
|
|
// Welcome to the instancing example!
|
|
|
|
//
|
|
|
|
// This is a simple, modified version of the `triangle.rs` example that demonstrates how we can use
|
|
|
|
// the "instancing" technique with vulkano to draw many instances of the triangle.
|
|
|
|
|
2023-10-31 17:47:17 +00:00
|
|
|
use std::{error::Error, sync::Arc};
|
2022-03-06 19:30:49 +00:00
|
|
|
use vulkano::{
|
2023-04-02 13:07:16 +00:00
|
|
|
buffer::{Buffer, BufferContents, BufferCreateInfo, BufferUsage},
|
2022-04-24 01:16:19 +00:00
|
|
|
command_buffer::{
|
2023-12-20 12:04:01 +00:00
|
|
|
allocator::StandardCommandBufferAllocator, CommandBufferBeginInfo, CommandBufferLevel,
|
|
|
|
CommandBufferUsage, RecordingCommandBuffer, RenderPassBeginInfo,
|
2022-04-24 01:16:19 +00:00
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
device::{
|
2022-09-10 06:00:08 +00:00
|
|
|
physical::PhysicalDeviceType, Device, DeviceCreateInfo, DeviceExtensions, QueueCreateInfo,
|
2022-11-05 05:02:28 +00:00
|
|
|
QueueFlags,
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
2023-07-03 20:37:29 +00:00
|
|
|
image::{view::ImageView, Image, ImageUsage},
|
2023-06-17 20:18:48 +00:00
|
|
|
instance::{Instance, InstanceCreateFlags, InstanceCreateInfo},
|
2023-07-19 09:11:17 +00:00
|
|
|
memory::allocator::{AllocationCreateInfo, MemoryTypeFilter, StandardMemoryAllocator},
|
2022-03-06 19:30:49 +00:00
|
|
|
pipeline::{
|
|
|
|
graphics::{
|
2023-10-07 14:46:03 +00:00
|
|
|
color_blend::{ColorBlendAttachmentState, ColorBlendState},
|
2022-03-06 19:30:49 +00:00
|
|
|
input_assembly::InputAssemblyState,
|
2023-04-18 18:53:08 +00:00
|
|
|
multisample::MultisampleState,
|
|
|
|
rasterization::RasterizationState,
|
2023-04-19 15:45:27 +00:00
|
|
|
vertex_input::{Vertex, VertexDefinition},
|
2022-03-06 19:30:49 +00:00
|
|
|
viewport::{Viewport, ViewportState},
|
2023-04-22 18:46:22 +00:00
|
|
|
GraphicsPipelineCreateInfo,
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
2023-04-22 18:46:22 +00:00
|
|
|
layout::PipelineDescriptorSetLayoutCreateInfo,
|
2023-10-07 14:46:03 +00:00
|
|
|
DynamicState, GraphicsPipeline, PipelineLayout, PipelineShaderStageCreateInfo,
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
|
|
|
render_pass::{Framebuffer, FramebufferCreateInfo, RenderPass, Subpass},
|
|
|
|
single_pass_renderpass,
|
|
|
|
swapchain::{
|
2023-08-04 20:02:45 +00:00
|
|
|
acquire_next_image, Surface, Swapchain, SwapchainCreateInfo, SwapchainPresentInfo,
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
2023-08-04 20:02:45 +00:00
|
|
|
sync::{self, GpuFuture},
|
|
|
|
Validated, VulkanError, VulkanLibrary,
|
2022-02-20 09:55:34 +00:00
|
|
|
};
|
2022-03-06 19:30:49 +00:00
|
|
|
use winit::{
|
|
|
|
event::{Event, WindowEvent},
|
|
|
|
event_loop::{ControlFlow, EventLoop},
|
2023-05-12 07:52:20 +00:00
|
|
|
window::WindowBuilder,
|
2022-03-06 19:30:49 +00:00
|
|
|
};
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
/// The vertex type that we will be used to describe the triangle's geometry.
|
|
|
|
#[derive(BufferContents, Vertex)]
|
2021-11-24 14:19:57 +00:00
|
|
|
#[repr(C)]
|
2022-12-28 10:23:36 +00:00
|
|
|
struct TriangleVertex {
|
|
|
|
#[format(R32G32_SFLOAT)]
|
2019-03-15 03:05:07 +00:00
|
|
|
position: [f32; 2],
|
|
|
|
}
|
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
/// The vertex type that describes the unique data per instance.
|
|
|
|
#[derive(BufferContents, Vertex)]
|
2021-11-24 14:19:57 +00:00
|
|
|
#[repr(C)]
|
2019-03-15 03:05:07 +00:00
|
|
|
struct InstanceData {
|
2022-12-28 10:23:36 +00:00
|
|
|
#[format(R32G32_SFLOAT)]
|
2019-03-15 03:05:07 +00:00
|
|
|
position_offset: [f32; 2],
|
2022-12-28 10:23:36 +00:00
|
|
|
#[format(R32_SFLOAT)]
|
2019-03-15 03:05:07 +00:00
|
|
|
scale: f32,
|
|
|
|
}
|
|
|
|
|
2023-10-31 17:47:17 +00:00
|
|
|
fn main() -> Result<(), impl Error> {
|
|
|
|
let event_loop = EventLoop::new().unwrap();
|
2023-05-12 07:52:20 +00:00
|
|
|
|
2022-07-30 06:53:52 +00:00
|
|
|
let library = VulkanLibrary::new().unwrap();
|
2023-10-31 17:47:17 +00:00
|
|
|
let required_extensions = Surface::required_extensions(&event_loop).unwrap();
|
2022-07-30 06:53:52 +00:00
|
|
|
let instance = Instance::new(
|
|
|
|
library,
|
|
|
|
InstanceCreateInfo {
|
2023-06-17 20:18:48 +00:00
|
|
|
flags: InstanceCreateFlags::ENUMERATE_PORTABILITY,
|
2022-07-30 06:53:52 +00:00
|
|
|
enabled_extensions: required_extensions,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
2022-02-14 09:32:27 +00:00
|
|
|
.unwrap();
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2023-05-12 07:52:20 +00:00
|
|
|
let window = Arc::new(WindowBuilder::new().build(&event_loop).unwrap());
|
|
|
|
let surface = Surface::from_window(instance.clone(), window.clone()).unwrap();
|
2020-05-10 00:36:20 +00:00
|
|
|
|
2021-06-28 06:24:44 +00:00
|
|
|
let device_extensions = DeviceExtensions {
|
2020-05-10 00:36:20 +00:00
|
|
|
khr_swapchain: true,
|
2022-09-05 20:16:40 +00:00
|
|
|
..DeviceExtensions::empty()
|
2020-05-10 00:36:20 +00:00
|
|
|
};
|
2022-09-10 06:00:08 +00:00
|
|
|
let (physical_device, queue_family_index) = instance
|
|
|
|
.enumerate_physical_devices()
|
|
|
|
.unwrap()
|
|
|
|
.filter(|p| p.supported_extensions().contains(&device_extensions))
|
2021-06-28 06:24:44 +00:00
|
|
|
.filter_map(|p| {
|
2022-09-10 06:00:08 +00:00
|
|
|
p.queue_family_properties()
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.position(|(i, q)| {
|
2022-11-05 05:02:28 +00:00
|
|
|
q.queue_flags.intersects(QueueFlags::GRAPHICS)
|
|
|
|
&& p.surface_support(i as u32, &surface).unwrap_or(false)
|
2022-09-10 06:00:08 +00:00
|
|
|
})
|
|
|
|
.map(|i| (p, i as u32))
|
2021-06-28 06:24:44 +00:00
|
|
|
})
|
2021-08-09 13:44:58 +00:00
|
|
|
.min_by_key(|(p, _)| match p.properties().device_type {
|
2021-06-28 06:24:44 +00:00
|
|
|
PhysicalDeviceType::DiscreteGpu => 0,
|
|
|
|
PhysicalDeviceType::IntegratedGpu => 1,
|
|
|
|
PhysicalDeviceType::VirtualGpu => 2,
|
|
|
|
PhysicalDeviceType::Cpu => 3,
|
|
|
|
PhysicalDeviceType::Other => 4,
|
2022-09-05 20:16:40 +00:00
|
|
|
_ => 5,
|
2021-06-28 06:24:44 +00:00
|
|
|
})
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
println!(
|
|
|
|
"Using device: {} (type: {:?})",
|
2021-08-09 13:44:58 +00:00
|
|
|
physical_device.properties().device_name,
|
|
|
|
physical_device.properties().device_type,
|
2021-06-28 06:24:44 +00:00
|
|
|
);
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let (device, mut queues) = Device::new(
|
2021-06-28 06:24:44 +00:00
|
|
|
physical_device,
|
2022-02-14 09:32:27 +00:00
|
|
|
DeviceCreateInfo {
|
2022-07-18 13:11:43 +00:00
|
|
|
enabled_extensions: device_extensions,
|
2022-09-10 06:00:08 +00:00
|
|
|
queue_create_infos: vec![QueueCreateInfo {
|
|
|
|
queue_family_index,
|
|
|
|
..Default::default()
|
|
|
|
}],
|
2022-02-14 09:32:27 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
2020-05-10 00:36:20 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-03-15 03:05:07 +00:00
|
|
|
|
|
|
|
let queue = queues.next().unwrap();
|
|
|
|
|
|
|
|
let (mut swapchain, images) = {
|
2022-09-10 06:00:08 +00:00
|
|
|
let surface_capabilities = device
|
|
|
|
.physical_device()
|
2022-02-20 09:55:34 +00:00
|
|
|
.surface_capabilities(&surface, Default::default())
|
|
|
|
.unwrap();
|
2023-07-14 14:44:34 +00:00
|
|
|
let image_format = device
|
|
|
|
.physical_device()
|
|
|
|
.surface_formats(&surface, Default::default())
|
|
|
|
.unwrap()[0]
|
|
|
|
.0;
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2022-02-20 09:55:34 +00:00
|
|
|
Swapchain::new(
|
|
|
|
device.clone(),
|
2023-05-12 18:26:49 +00:00
|
|
|
surface,
|
2022-02-20 09:55:34 +00:00
|
|
|
SwapchainCreateInfo {
|
2023-06-02 20:01:38 +00:00
|
|
|
min_image_count: surface_capabilities.min_image_count.max(2),
|
2022-02-20 09:55:34 +00:00
|
|
|
image_format,
|
2022-10-20 07:26:34 +00:00
|
|
|
image_extent: window.inner_size().into(),
|
2022-11-05 05:02:28 +00:00
|
|
|
image_usage: ImageUsage::COLOR_ATTACHMENT,
|
2022-02-20 09:55:34 +00:00
|
|
|
composite_alpha: surface_capabilities
|
|
|
|
.supported_composite_alpha
|
2022-11-05 05:02:28 +00:00
|
|
|
.into_iter()
|
2022-02-20 09:55:34 +00:00
|
|
|
.next()
|
|
|
|
.unwrap(),
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap()
|
2019-03-15 03:05:07 +00:00
|
|
|
};
|
|
|
|
|
2023-09-03 11:09:07 +00:00
|
|
|
let memory_allocator = Arc::new(StandardMemoryAllocator::new_default(device.clone()));
|
2022-10-26 14:25:01 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
// We now create a buffer that will store the shape of our triangle. This triangle is identical
|
|
|
|
// to the one in the `triangle.rs` example.
|
2022-03-06 19:30:49 +00:00
|
|
|
let vertices = [
|
2022-12-28 10:23:36 +00:00
|
|
|
TriangleVertex {
|
2022-03-06 19:30:49 +00:00
|
|
|
position: [-0.5, -0.25],
|
|
|
|
},
|
2022-12-28 10:23:36 +00:00
|
|
|
TriangleVertex {
|
2022-03-06 19:30:49 +00:00
|
|
|
position: [0.0, 0.5],
|
|
|
|
},
|
2022-12-28 10:23:36 +00:00
|
|
|
TriangleVertex {
|
2022-03-06 19:30:49 +00:00
|
|
|
position: [0.25, -0.1],
|
|
|
|
},
|
|
|
|
];
|
2023-07-19 09:11:17 +00:00
|
|
|
let vertex_buffer = Buffer::from_iter(
|
2023-09-03 11:09:07 +00:00
|
|
|
memory_allocator.clone(),
|
2023-07-19 09:11:17 +00:00
|
|
|
BufferCreateInfo {
|
|
|
|
usage: BufferUsage::VERTEX_BUFFER,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
AllocationCreateInfo {
|
|
|
|
memory_type_filter: MemoryTypeFilter::PREFER_DEVICE
|
|
|
|
| MemoryTypeFilter::HOST_SEQUENTIAL_WRITE,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
vertices,
|
|
|
|
)
|
|
|
|
.unwrap();
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
// Now we create another buffer that will store the unique data per instance. For this example,
|
|
|
|
// we'll have the instances form a 10x10 grid that slowly gets larger.
|
2022-03-06 19:30:49 +00:00
|
|
|
let instances = {
|
2019-03-15 03:05:07 +00:00
|
|
|
let rows = 10;
|
|
|
|
let cols = 10;
|
|
|
|
let n_instances = rows * cols;
|
|
|
|
let mut data = Vec::new();
|
|
|
|
for c in 0..cols {
|
|
|
|
for r in 0..rows {
|
|
|
|
let half_cell_w = 0.5 / cols as f32;
|
|
|
|
let half_cell_h = 0.5 / rows as f32;
|
|
|
|
let x = half_cell_w + (c as f32 / cols as f32) * 2.0 - 1.0;
|
|
|
|
let y = half_cell_h + (r as f32 / rows as f32) * 2.0 - 1.0;
|
|
|
|
let position_offset = [x, y];
|
|
|
|
let scale = (2.0 / rows as f32) * (c * rows + r) as f32 / n_instances as f32;
|
2020-05-10 00:36:20 +00:00
|
|
|
data.push(InstanceData {
|
|
|
|
position_offset,
|
|
|
|
scale,
|
|
|
|
});
|
2019-03-15 03:05:07 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-06 19:30:49 +00:00
|
|
|
data
|
2019-03-15 03:05:07 +00:00
|
|
|
};
|
2023-01-12 12:56:10 +00:00
|
|
|
let instance_buffer = Buffer::from_iter(
|
2023-09-03 11:09:07 +00:00
|
|
|
memory_allocator,
|
2023-04-02 13:07:16 +00:00
|
|
|
BufferCreateInfo {
|
|
|
|
usage: BufferUsage::VERTEX_BUFFER,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
AllocationCreateInfo {
|
2023-07-19 09:11:17 +00:00
|
|
|
memory_type_filter: MemoryTypeFilter::PREFER_DEVICE
|
|
|
|
| MemoryTypeFilter::HOST_SEQUENTIAL_WRITE,
|
2023-01-12 12:56:10 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
2022-09-05 20:16:40 +00:00
|
|
|
instances,
|
|
|
|
)
|
|
|
|
.unwrap();
|
2019-03-15 03:05:07 +00:00
|
|
|
|
|
|
|
mod vs {
|
2020-05-10 00:36:20 +00:00
|
|
|
vulkano_shaders::shader! {
|
2019-03-15 03:05:07 +00:00
|
|
|
ty: "vertex",
|
2023-03-05 18:56:35 +00:00
|
|
|
src: r"
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
// The triangle vertex positions.
|
|
|
|
layout(location = 0) in vec2 position;
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
// The per-instance data.
|
|
|
|
layout(location = 1) in vec2 position_offset;
|
|
|
|
layout(location = 2) in float scale;
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
void main() {
|
|
|
|
// Apply the scale and offset for the instance.
|
|
|
|
gl_Position = vec4(position * scale + position_offset, 0.0, 1.0);
|
|
|
|
}
|
2023-03-05 18:56:35 +00:00
|
|
|
",
|
2019-03-15 03:05:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod fs {
|
2020-05-10 00:36:20 +00:00
|
|
|
vulkano_shaders::shader! {
|
2019-03-15 03:05:07 +00:00
|
|
|
ty: "fragment",
|
2023-03-05 18:56:35 +00:00
|
|
|
src: r"
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
layout(location = 0) out vec4 f_color;
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
void main() {
|
|
|
|
f_color = vec4(1.0, 0.0, 0.0, 1.0);
|
|
|
|
}
|
2023-03-05 18:56:35 +00:00
|
|
|
",
|
2019-03-15 03:05:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-02 20:33:58 +00:00
|
|
|
let render_pass = single_pass_renderpass!(
|
|
|
|
device.clone(),
|
|
|
|
attachments: {
|
|
|
|
color: {
|
2022-02-20 09:55:34 +00:00
|
|
|
format: swapchain.image_format(),
|
2021-11-02 20:33:58 +00:00
|
|
|
samples: 1,
|
2023-06-17 19:01:50 +00:00
|
|
|
load_op: Clear,
|
|
|
|
store_op: Store,
|
2023-03-25 09:25:25 +00:00
|
|
|
},
|
2021-11-02 20:33:58 +00:00
|
|
|
},
|
|
|
|
pass: {
|
|
|
|
color: [color],
|
2023-03-25 09:25:25 +00:00
|
|
|
depth_stencil: {},
|
|
|
|
},
|
2021-11-02 20:33:58 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-05-10 00:36:20 +00:00
|
|
|
|
2023-04-22 18:46:22 +00:00
|
|
|
let pipeline = {
|
|
|
|
let vs = vs::load(device.clone())
|
|
|
|
.unwrap()
|
|
|
|
.entry_point("main")
|
|
|
|
.unwrap();
|
|
|
|
let fs = fs::load(device.clone())
|
|
|
|
.unwrap()
|
|
|
|
.entry_point("main")
|
|
|
|
.unwrap();
|
|
|
|
let vertex_input_state = [TriangleVertex::per_vertex(), InstanceData::per_instance()]
|
|
|
|
.definition(&vs.info().input_interface)
|
|
|
|
.unwrap();
|
|
|
|
let stages = [
|
2023-06-25 18:08:27 +00:00
|
|
|
PipelineShaderStageCreateInfo::new(vs),
|
|
|
|
PipelineShaderStageCreateInfo::new(fs),
|
2023-04-22 18:46:22 +00:00
|
|
|
];
|
|
|
|
let layout = PipelineLayout::new(
|
|
|
|
device.clone(),
|
|
|
|
PipelineDescriptorSetLayoutCreateInfo::from_stages(&stages)
|
|
|
|
.into_pipeline_layout_create_info(device.clone())
|
|
|
|
.unwrap(),
|
|
|
|
)
|
2021-11-02 20:33:58 +00:00
|
|
|
.unwrap();
|
2023-04-22 18:46:22 +00:00
|
|
|
let subpass = Subpass::from(render_pass.clone(), 0).unwrap();
|
2023-07-03 20:37:29 +00:00
|
|
|
|
2023-04-22 18:46:22 +00:00
|
|
|
GraphicsPipeline::new(
|
|
|
|
device.clone(),
|
|
|
|
None,
|
|
|
|
GraphicsPipelineCreateInfo {
|
|
|
|
stages: stages.into_iter().collect(),
|
2023-10-31 17:47:17 +00:00
|
|
|
// Use the implementations of the `Vertex` trait to describe to vulkano how the two
|
|
|
|
// vertex types are expected to be used.
|
2023-04-22 18:46:22 +00:00
|
|
|
vertex_input_state: Some(vertex_input_state),
|
|
|
|
input_assembly_state: Some(InputAssemblyState::default()),
|
2023-10-07 14:46:03 +00:00
|
|
|
viewport_state: Some(ViewportState::default()),
|
2023-04-22 18:46:22 +00:00
|
|
|
rasterization_state: Some(RasterizationState::default()),
|
|
|
|
multisample_state: Some(MultisampleState::default()),
|
2023-10-07 14:46:03 +00:00
|
|
|
color_blend_state: Some(ColorBlendState::with_attachment_states(
|
|
|
|
subpass.num_color_attachments(),
|
|
|
|
ColorBlendAttachmentState::default(),
|
|
|
|
)),
|
|
|
|
dynamic_state: [DynamicState::Viewport].into_iter().collect(),
|
2023-04-22 18:46:22 +00:00
|
|
|
subpass: Some(subpass.into()),
|
|
|
|
..GraphicsPipelineCreateInfo::layout(layout)
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
};
|
2020-05-10 00:36:20 +00:00
|
|
|
|
2021-08-27 06:24:16 +00:00
|
|
|
let mut viewport = Viewport {
|
2023-06-25 18:08:27 +00:00
|
|
|
offset: [0.0, 0.0],
|
|
|
|
extent: [0.0, 0.0],
|
|
|
|
depth_range: 0.0..=1.0,
|
2020-05-10 00:36:20 +00:00
|
|
|
};
|
2021-08-27 06:24:16 +00:00
|
|
|
let mut framebuffers = window_size_dependent_setup(&images, render_pass.clone(), &mut viewport);
|
2019-03-15 03:05:07 +00:00
|
|
|
let mut recreate_swapchain = false;
|
2020-05-12 23:05:09 +00:00
|
|
|
let mut previous_frame_end = Some(sync::now(device.clone()).boxed());
|
2019-03-15 03:05:07 +00:00
|
|
|
|
2023-11-14 16:57:43 +00:00
|
|
|
let command_buffer_allocator = Arc::new(StandardCommandBufferAllocator::new(
|
|
|
|
device.clone(),
|
|
|
|
Default::default(),
|
|
|
|
));
|
2022-10-05 09:09:26 +00:00
|
|
|
|
2023-10-31 17:47:17 +00:00
|
|
|
event_loop.run(move |event, elwt| {
|
|
|
|
elwt.set_control_flow(ControlFlow::Poll);
|
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
match event {
|
2020-05-10 00:36:20 +00:00
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::CloseRequested,
|
|
|
|
..
|
|
|
|
} => {
|
2023-10-31 17:47:17 +00:00
|
|
|
elwt.exit();
|
2020-05-10 00:36:20 +00:00
|
|
|
}
|
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::Resized(_),
|
|
|
|
..
|
|
|
|
} => {
|
2019-03-15 03:05:07 +00:00
|
|
|
recreate_swapchain = true;
|
2020-05-10 00:36:20 +00:00
|
|
|
}
|
2023-10-31 17:47:17 +00:00
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::RedrawRequested,
|
|
|
|
..
|
|
|
|
} => {
|
2023-06-26 09:17:53 +00:00
|
|
|
let image_extent: [u32; 2] = window.inner_size().into();
|
|
|
|
|
|
|
|
if image_extent.contains(&0) {
|
2022-05-09 12:25:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
previous_frame_end.as_mut().unwrap().cleanup_finished();
|
|
|
|
|
|
|
|
if recreate_swapchain {
|
2023-06-26 09:17:53 +00:00
|
|
|
let (new_swapchain, new_images) = swapchain
|
|
|
|
.recreate(SwapchainCreateInfo {
|
|
|
|
image_extent,
|
2022-02-20 09:55:34 +00:00
|
|
|
..swapchain.create_info()
|
2023-06-26 09:17:53 +00:00
|
|
|
})
|
|
|
|
.expect("failed to recreate swapchain");
|
2020-01-23 07:37:12 +00:00
|
|
|
|
|
|
|
swapchain = new_swapchain;
|
2020-05-10 00:36:20 +00:00
|
|
|
framebuffers = window_size_dependent_setup(
|
|
|
|
&new_images,
|
|
|
|
render_pass.clone(),
|
2021-08-27 06:24:16 +00:00
|
|
|
&mut viewport,
|
2020-05-10 00:36:20 +00:00
|
|
|
);
|
2020-01-23 07:37:12 +00:00
|
|
|
recreate_swapchain = false;
|
|
|
|
}
|
|
|
|
|
2022-09-24 06:45:06 +00:00
|
|
|
let (image_index, suboptimal, acquire_future) =
|
2023-08-04 20:02:45 +00:00
|
|
|
match acquire_next_image(swapchain.clone(), None).map_err(Validated::unwrap) {
|
2020-05-10 00:36:20 +00:00
|
|
|
Ok(r) => r,
|
2023-08-04 20:02:45 +00:00
|
|
|
Err(VulkanError::OutOfDate) => {
|
2020-05-10 00:36:20 +00:00
|
|
|
recreate_swapchain = true;
|
|
|
|
return;
|
|
|
|
}
|
2023-03-05 18:56:35 +00:00
|
|
|
Err(e) => panic!("failed to acquire next image: {e}"),
|
2020-05-10 00:36:20 +00:00
|
|
|
};
|
2020-01-23 07:37:12 +00:00
|
|
|
|
2020-01-29 07:44:28 +00:00
|
|
|
if suboptimal {
|
|
|
|
recreate_swapchain = true;
|
|
|
|
}
|
|
|
|
|
2023-12-20 12:04:01 +00:00
|
|
|
let mut builder = RecordingCommandBuffer::new(
|
2023-11-14 16:57:43 +00:00
|
|
|
command_buffer_allocator.clone(),
|
2022-09-10 06:00:08 +00:00
|
|
|
queue.queue_family_index(),
|
2023-12-20 12:04:01 +00:00
|
|
|
CommandBufferLevel::Primary,
|
|
|
|
CommandBufferBeginInfo {
|
|
|
|
usage: CommandBufferUsage::OneTimeSubmit,
|
|
|
|
..Default::default()
|
|
|
|
},
|
2020-05-10 00:36:20 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2020-06-01 14:41:42 +00:00
|
|
|
builder
|
2020-11-10 17:01:13 +00:00
|
|
|
.begin_render_pass(
|
2022-04-24 01:16:19 +00:00
|
|
|
RenderPassBeginInfo {
|
|
|
|
clear_values: vec![Some([0.0, 0.0, 1.0, 1.0].into())],
|
2022-09-24 06:45:06 +00:00
|
|
|
..RenderPassBeginInfo::framebuffer(
|
|
|
|
framebuffers[image_index as usize].clone(),
|
|
|
|
)
|
2022-04-24 01:16:19 +00:00
|
|
|
},
|
2023-08-04 18:55:16 +00:00
|
|
|
Default::default(),
|
2020-11-10 17:01:13 +00:00
|
|
|
)
|
2020-06-01 14:41:42 +00:00
|
|
|
.unwrap()
|
2023-05-18 11:03:37 +00:00
|
|
|
.set_viewport(0, [viewport.clone()].into_iter().collect())
|
2023-08-04 18:55:16 +00:00
|
|
|
.unwrap()
|
2021-08-27 06:24:16 +00:00
|
|
|
.bind_pipeline_graphics(pipeline.clone())
|
2023-08-04 18:55:16 +00:00
|
|
|
.unwrap()
|
2021-08-27 06:24:16 +00:00
|
|
|
// We pass both our lists of vertices here.
|
2022-03-06 19:30:49 +00:00
|
|
|
.bind_vertex_buffers(0, (vertex_buffer.clone(), instance_buffer.clone()))
|
2023-08-04 18:55:16 +00:00
|
|
|
.unwrap()
|
2020-06-01 14:41:42 +00:00
|
|
|
.draw(
|
2022-03-06 19:30:49 +00:00
|
|
|
vertex_buffer.len() as u32,
|
|
|
|
instance_buffer.len() as u32,
|
2021-08-12 14:14:02 +00:00
|
|
|
0,
|
|
|
|
0,
|
2020-06-01 14:41:42 +00:00
|
|
|
)
|
|
|
|
.unwrap()
|
2023-08-04 18:55:16 +00:00
|
|
|
.end_render_pass(Default::default())
|
2020-06-01 14:41:42 +00:00
|
|
|
.unwrap();
|
2023-12-09 11:24:52 +00:00
|
|
|
let command_buffer = builder.end().unwrap();
|
2020-05-10 00:36:20 +00:00
|
|
|
|
|
|
|
let future = previous_frame_end
|
|
|
|
.take()
|
2020-01-23 07:37:12 +00:00
|
|
|
.unwrap()
|
|
|
|
.join(acquire_future)
|
2020-05-10 00:36:20 +00:00
|
|
|
.then_execute(queue.clone(), command_buffer)
|
|
|
|
.unwrap()
|
2022-09-17 07:38:32 +00:00
|
|
|
.then_swapchain_present(
|
|
|
|
queue.clone(),
|
2022-09-24 06:45:06 +00:00
|
|
|
SwapchainPresentInfo::swapchain_image_index(swapchain.clone(), image_index),
|
2022-09-17 07:38:32 +00:00
|
|
|
)
|
2020-01-23 07:37:12 +00:00
|
|
|
.then_signal_fence_and_flush();
|
|
|
|
|
2023-08-04 20:02:45 +00:00
|
|
|
match future.map_err(Validated::unwrap) {
|
2020-01-23 07:37:12 +00:00
|
|
|
Ok(future) => {
|
2020-05-12 23:05:09 +00:00
|
|
|
previous_frame_end = Some(future.boxed());
|
2020-05-10 00:36:20 +00:00
|
|
|
}
|
2023-08-04 20:02:45 +00:00
|
|
|
Err(VulkanError::OutOfDate) => {
|
2020-01-23 07:37:12 +00:00
|
|
|
recreate_swapchain = true;
|
2020-05-12 23:05:09 +00:00
|
|
|
previous_frame_end = Some(sync::now(device.clone()).boxed());
|
2020-01-23 07:37:12 +00:00
|
|
|
}
|
|
|
|
Err(e) => {
|
2023-03-05 18:56:35 +00:00
|
|
|
println!("failed to flush future: {e}");
|
2020-05-12 23:05:09 +00:00
|
|
|
previous_frame_end = Some(sync::now(device.clone()).boxed());
|
2020-01-23 07:37:12 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-10 00:36:20 +00:00
|
|
|
}
|
2023-10-31 17:47:17 +00:00
|
|
|
Event::AboutToWait => window.request_redraw(),
|
2020-05-10 00:36:20 +00:00
|
|
|
_ => (),
|
2019-03-15 03:05:07 +00:00
|
|
|
}
|
2023-10-31 17:47:17 +00:00
|
|
|
})
|
2019-03-15 03:05:07 +00:00
|
|
|
}
|
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
/// This function is called once during initialization, then again whenever the window is resized.
|
2019-03-15 03:05:07 +00:00
|
|
|
fn window_size_dependent_setup(
|
2023-07-03 20:37:29 +00:00
|
|
|
images: &[Arc<Image>],
|
2021-04-10 11:09:03 +00:00
|
|
|
render_pass: Arc<RenderPass>,
|
2021-08-27 06:24:16 +00:00
|
|
|
viewport: &mut Viewport,
|
2021-11-02 20:33:58 +00:00
|
|
|
) -> Vec<Arc<Framebuffer>> {
|
2023-07-06 08:52:11 +00:00
|
|
|
let extent = images[0].extent();
|
|
|
|
viewport.extent = [extent[0] as f32, extent[1] as f32];
|
2020-05-10 00:36:20 +00:00
|
|
|
|
|
|
|
images
|
|
|
|
.iter()
|
|
|
|
.map(|image| {
|
2022-02-27 06:18:14 +00:00
|
|
|
let view = ImageView::new_default(image.clone()).unwrap();
|
2022-02-20 00:14:16 +00:00
|
|
|
Framebuffer::new(
|
|
|
|
render_pass.clone(),
|
|
|
|
FramebufferCreateInfo {
|
|
|
|
attachments: vec![view],
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap()
|
2020-05-10 00:36:20 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<_>>()
|
2019-03-15 03:05:07 +00:00
|
|
|
}
|