2019-08-03 15:42:47 +00:00
|
|
|
// Copyright (c) 2019 The vulkano developers
|
|
|
|
// Licensed under the Apache License, Version 2.0
|
|
|
|
// <LICENSE-APACHE or
|
2020-11-10 17:03:50 +00:00
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT
|
|
|
|
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>,
|
2019-08-03 15:42:47 +00:00
|
|
|
// at your option. All files in the project carrying such
|
|
|
|
// notice may not be copied, modified, or distributed except
|
|
|
|
// according to those terms.
|
|
|
|
|
|
|
|
// Indirect draw example
|
|
|
|
//
|
|
|
|
// Indirect draw calls allow us to issue a draw without needing to know the number of vertices
|
|
|
|
// until later when the draw is executed by the GPU.
|
|
|
|
//
|
|
|
|
// This is used in situations where vertices are being generated on the GPU, such as a GPU
|
|
|
|
// particle simulation, and the exact number of output vertices cannot be known until
|
|
|
|
// the compute shader has run.
|
|
|
|
//
|
|
|
|
// In this example the compute shader is trivial and the number of vertices does not change.
|
|
|
|
// However is does demonstrate that each compute instance atomically updates the vertex
|
|
|
|
// counter before filling the vertex buffer.
|
|
|
|
//
|
|
|
|
// For an explanation of how the rendering of the triangles takes place see the `triangle.rs`
|
|
|
|
// example.
|
|
|
|
//
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate vulkano;
|
|
|
|
extern crate vulkano_shaders;
|
|
|
|
extern crate vulkano_win;
|
2020-05-10 00:36:20 +00:00
|
|
|
extern crate winit;
|
2019-08-03 15:42:47 +00:00
|
|
|
|
2021-04-26 14:53:18 +00:00
|
|
|
use std::iter;
|
|
|
|
use std::sync::Arc;
|
2019-08-03 15:42:47 +00:00
|
|
|
use vulkano::buffer::{BufferUsage, CpuBufferPool};
|
2020-11-10 17:01:13 +00:00
|
|
|
use vulkano::command_buffer::{
|
2021-04-26 14:53:18 +00:00
|
|
|
AutoCommandBufferBuilder, CommandBufferUsage, DrawIndirectCommand, DynamicState,
|
|
|
|
SubpassContents,
|
2020-11-10 17:01:13 +00:00
|
|
|
};
|
2021-06-28 08:28:09 +00:00
|
|
|
use vulkano::descriptor_set::PersistentDescriptorSet;
|
2021-06-28 08:04:28 +00:00
|
|
|
use vulkano::device::physical::{PhysicalDevice, PhysicalDeviceType};
|
2021-06-28 06:24:44 +00:00
|
|
|
use vulkano::device::{Device, DeviceExtensions, Features};
|
2021-03-14 12:09:08 +00:00
|
|
|
use vulkano::image::view::ImageView;
|
2020-06-01 14:41:42 +00:00
|
|
|
use vulkano::image::{ImageUsage, SwapchainImage};
|
2021-06-28 08:04:28 +00:00
|
|
|
use vulkano::instance::Instance;
|
2019-08-03 15:42:47 +00:00
|
|
|
use vulkano::pipeline::viewport::Viewport;
|
2021-05-23 15:33:25 +00:00
|
|
|
use vulkano::pipeline::{ComputePipeline, ComputePipelineAbstract, GraphicsPipeline};
|
2021-04-10 11:09:03 +00:00
|
|
|
use vulkano::render_pass::{Framebuffer, FramebufferAbstract, RenderPass, Subpass};
|
2019-08-03 15:42:47 +00:00
|
|
|
use vulkano::swapchain;
|
2021-05-03 13:07:41 +00:00
|
|
|
use vulkano::swapchain::{AcquireError, Swapchain, SwapchainCreationError};
|
2019-08-03 15:42:47 +00:00
|
|
|
use vulkano::sync;
|
2020-05-10 00:36:20 +00:00
|
|
|
use vulkano::sync::{FlushError, GpuFuture};
|
2021-05-23 16:09:50 +00:00
|
|
|
use vulkano::Version;
|
2019-08-03 15:42:47 +00:00
|
|
|
use vulkano_win::VkSurfaceBuild;
|
2020-01-23 07:37:12 +00:00
|
|
|
use winit::event::{Event, WindowEvent};
|
2020-05-10 00:36:20 +00:00
|
|
|
use winit::event_loop::{ControlFlow, EventLoop};
|
|
|
|
use winit::window::{Window, WindowBuilder};
|
2019-08-03 15:42:47 +00:00
|
|
|
|
|
|
|
// # Vertex Types
|
|
|
|
// `Vertex` is the vertex type that will be output from the compute shader and be input to the vertex shader.
|
|
|
|
#[derive(Default, Debug, Clone)]
|
|
|
|
struct Vertex {
|
|
|
|
position: [f32; 2],
|
|
|
|
}
|
|
|
|
impl_vertex!(Vertex, position);
|
|
|
|
|
|
|
|
fn main() {
|
2020-01-23 07:37:12 +00:00
|
|
|
let required_extensions = vulkano_win::required_extensions();
|
2021-06-13 19:47:10 +00:00
|
|
|
let instance = Instance::new(None, Version::V1_1, &required_extensions, None).unwrap();
|
2019-08-03 15:42:47 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
let event_loop = EventLoop::new();
|
2020-05-10 00:36:20 +00:00
|
|
|
let surface = WindowBuilder::new()
|
|
|
|
.build_vk_surface(&event_loop, instance.clone())
|
|
|
|
.unwrap();
|
|
|
|
|
2021-06-28 06:24:44 +00:00
|
|
|
let device_extensions = DeviceExtensions {
|
2020-05-10 00:36:20 +00:00
|
|
|
khr_swapchain: true,
|
|
|
|
khr_storage_buffer_storage_class: true,
|
|
|
|
..DeviceExtensions::none()
|
|
|
|
};
|
2021-06-28 06:24:44 +00:00
|
|
|
let (physical_device, queue_family) = PhysicalDevice::enumerate(&instance)
|
2021-06-28 09:07:54 +00:00
|
|
|
.filter(|&p| p.supported_extensions().is_superset_of(&device_extensions))
|
2021-06-28 06:24:44 +00:00
|
|
|
.filter_map(|p| {
|
|
|
|
p.queue_families()
|
|
|
|
.find(|&q| q.supports_graphics() && surface.is_supported(q).unwrap_or(false))
|
|
|
|
.map(|q| (p, q))
|
|
|
|
})
|
|
|
|
.min_by_key(|(p, _)| match p.properties().device_type.unwrap() {
|
|
|
|
PhysicalDeviceType::DiscreteGpu => 0,
|
|
|
|
PhysicalDeviceType::IntegratedGpu => 1,
|
|
|
|
PhysicalDeviceType::VirtualGpu => 2,
|
|
|
|
PhysicalDeviceType::Cpu => 3,
|
|
|
|
PhysicalDeviceType::Other => 4,
|
|
|
|
})
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
println!(
|
|
|
|
"Using device: {} (type: {:?})",
|
|
|
|
physical_device.properties().device_name.as_ref().unwrap(),
|
|
|
|
physical_device.properties().device_type.unwrap(),
|
|
|
|
);
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let (device, mut queues) = Device::new(
|
2021-06-28 06:24:44 +00:00
|
|
|
physical_device,
|
|
|
|
&Features::none(),
|
2021-06-28 08:04:28 +00:00
|
|
|
&physical_device
|
|
|
|
.required_extensions()
|
|
|
|
.union(&device_extensions),
|
2020-05-10 00:36:20 +00:00
|
|
|
[(queue_family, 0.5)].iter().cloned(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2019-08-03 15:42:47 +00:00
|
|
|
|
|
|
|
let queue = queues.next().unwrap();
|
|
|
|
|
|
|
|
let (mut swapchain, images) = {
|
2021-06-28 06:24:44 +00:00
|
|
|
let caps = surface.capabilities(physical_device).unwrap();
|
2021-05-03 13:07:41 +00:00
|
|
|
let composite_alpha = caps.supported_composite_alpha.iter().next().unwrap();
|
2019-08-03 15:42:47 +00:00
|
|
|
let format = caps.supported_formats[0].0;
|
2020-01-23 07:37:12 +00:00
|
|
|
let dimensions: [u32; 2] = surface.window().inner_size().into();
|
2019-08-03 15:42:47 +00:00
|
|
|
|
2021-05-03 13:07:41 +00:00
|
|
|
Swapchain::start(device.clone(), surface.clone())
|
|
|
|
.num_images(caps.min_image_count)
|
|
|
|
.format(format)
|
|
|
|
.dimensions(dimensions)
|
|
|
|
.usage(ImageUsage::color_attachment())
|
|
|
|
.sharing_mode(&queue)
|
|
|
|
.composite_alpha(composite_alpha)
|
|
|
|
.build()
|
|
|
|
.unwrap()
|
2019-08-03 15:42:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
mod vs {
|
2020-05-10 00:36:20 +00:00
|
|
|
vulkano_shaders::shader! {
|
2019-08-03 15:42:47 +00:00
|
|
|
ty: "vertex",
|
|
|
|
src: "
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
2019-08-03 15:42:47 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
// The triangle vertex positions.
|
|
|
|
layout(location = 0) in vec2 position;
|
2019-08-03 15:42:47 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
void main() {
|
|
|
|
gl_Position = vec4(position, 0.0, 1.0);
|
|
|
|
}
|
|
|
|
"
|
2019-08-03 15:42:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod fs {
|
2020-05-10 00:36:20 +00:00
|
|
|
vulkano_shaders::shader! {
|
2019-08-03 15:42:47 +00:00
|
|
|
ty: "fragment",
|
|
|
|
src: "
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
2019-08-03 15:42:47 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
layout(location = 0) out vec4 f_color;
|
2019-08-03 15:42:47 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
void main() {
|
|
|
|
f_color = vec4(1.0, 0.0, 0.0, 1.0);
|
|
|
|
}
|
|
|
|
"
|
2019-08-03 15:42:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// A simple compute shader that generates vertices. It has two buffers bound: the first is where we output the vertices, the second
|
|
|
|
// is the IndirectDrawArgs struct we passed the draw_indirect so we can set the number to vertices to draw
|
|
|
|
mod cs {
|
|
|
|
vulkano_shaders::shader! {
|
|
|
|
ty: "compute",
|
|
|
|
src: "
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
|
|
|
|
|
|
|
layout(local_size_x = 16, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
|
|
|
|
layout(set = 0, binding = 0) buffer Output {
|
|
|
|
vec2 pos[];
|
|
|
|
} triangles;
|
|
|
|
|
|
|
|
layout(set = 0, binding = 1) buffer IndirectDrawArgs {
|
|
|
|
uint vertices;
|
|
|
|
uint unused0;
|
|
|
|
uint unused1;
|
|
|
|
uint unused2;
|
|
|
|
};
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
uint idx = gl_GlobalInvocationID.x;
|
|
|
|
|
|
|
|
// each thread of compute shader is going to increment the counter, so we need to use atomic
|
|
|
|
// operations for safety. The previous value of the counter is returned so that gives us
|
|
|
|
// the offset into the vertex buffer this thread can write it's vertices into.
|
|
|
|
uint offset = atomicAdd(vertices, 6);
|
|
|
|
|
|
|
|
vec2 center = vec2(-0.8, -0.8) + idx * vec2(0.1, 0.1);
|
|
|
|
triangles.pos[offset + 0] = center + vec2(0.0, 0.0375);
|
|
|
|
triangles.pos[offset + 1] = center + vec2(0.025, -0.01725);
|
|
|
|
triangles.pos[offset + 2] = center + vec2(-0.025, -0.01725);
|
|
|
|
triangles.pos[offset + 3] = center + vec2(0.0, -0.0375);
|
|
|
|
triangles.pos[offset + 4] = center + vec2(0.025, 0.01725);
|
|
|
|
triangles.pos[offset + 5] = center + vec2(-0.025, 0.01725);
|
|
|
|
}
|
|
|
|
"
|
2019-08-03 15:42:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let vs = vs::Shader::load(device.clone()).unwrap();
|
|
|
|
let fs = fs::Shader::load(device.clone()).unwrap();
|
|
|
|
let cs = cs::Shader::load(device.clone()).unwrap();
|
|
|
|
|
|
|
|
// Each frame we generate a new set of vertices and each frame we need a new DrawIndirectCommand struct to
|
|
|
|
// set the number of vertices to draw
|
2020-05-10 00:36:20 +00:00
|
|
|
let indirect_args_pool: CpuBufferPool<DrawIndirectCommand> =
|
|
|
|
CpuBufferPool::new(device.clone(), BufferUsage::all());
|
|
|
|
let vertex_pool: CpuBufferPool<Vertex> = CpuBufferPool::new(device.clone(), BufferUsage::all());
|
|
|
|
|
|
|
|
let compute_pipeline =
|
2020-11-29 08:40:44 +00:00
|
|
|
Arc::new(ComputePipeline::new(device.clone(), &cs.main_entry_point(), &(), None).unwrap());
|
2020-05-10 00:36:20 +00:00
|
|
|
|
|
|
|
let render_pass = Arc::new(
|
|
|
|
single_pass_renderpass!(
|
|
|
|
device.clone(),
|
|
|
|
attachments: {
|
|
|
|
color: {
|
|
|
|
load: Clear,
|
|
|
|
store: Store,
|
|
|
|
format: swapchain.format(),
|
|
|
|
samples: 1,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
pass: {
|
|
|
|
color: [color],
|
|
|
|
depth_stencil: {}
|
2019-08-03 15:42:47 +00:00
|
|
|
}
|
2020-05-10 00:36:20 +00:00
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
);
|
|
|
|
|
|
|
|
let render_pipeline = Arc::new(
|
|
|
|
GraphicsPipeline::start()
|
|
|
|
.vertex_input_single_buffer()
|
|
|
|
.vertex_shader(vs.main_entry_point(), ())
|
|
|
|
.triangle_list()
|
|
|
|
.viewports_dynamic_scissors_irrelevant(1)
|
|
|
|
.fragment_shader(fs.main_entry_point(), ())
|
|
|
|
.render_pass(Subpass::from(render_pass.clone(), 0).unwrap())
|
|
|
|
.build(device.clone())
|
|
|
|
.unwrap(),
|
|
|
|
);
|
|
|
|
|
|
|
|
let mut dynamic_state = DynamicState {
|
|
|
|
line_width: None,
|
|
|
|
viewports: None,
|
|
|
|
scissors: None,
|
|
|
|
compare_mask: None,
|
|
|
|
write_mask: None,
|
|
|
|
reference: None,
|
|
|
|
};
|
|
|
|
let mut framebuffers =
|
|
|
|
window_size_dependent_setup(&images, render_pass.clone(), &mut dynamic_state);
|
2019-08-03 15:42:47 +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-08-03 15:42:47 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
event_loop.run(move |event, _, control_flow| {
|
|
|
|
match event {
|
2020-05-10 00:36:20 +00:00
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::CloseRequested,
|
|
|
|
..
|
|
|
|
} => {
|
2020-01-23 07:37:12 +00:00
|
|
|
*control_flow = ControlFlow::Exit;
|
2020-05-10 00:36:20 +00:00
|
|
|
}
|
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::Resized(_),
|
|
|
|
..
|
|
|
|
} => {
|
2019-08-03 15:42:47 +00:00
|
|
|
recreate_swapchain = true;
|
2020-05-10 00:36:20 +00:00
|
|
|
}
|
2020-01-23 07:37:12 +00:00
|
|
|
Event::RedrawEventsCleared => {
|
|
|
|
previous_frame_end.as_mut().unwrap().cleanup_finished();
|
|
|
|
|
|
|
|
if recreate_swapchain {
|
|
|
|
let dimensions: [u32; 2] = surface.window().inner_size().into();
|
2020-05-10 00:36:20 +00:00
|
|
|
let (new_swapchain, new_images) =
|
2021-05-03 13:07:41 +00:00
|
|
|
match swapchain.recreate().dimensions(dimensions).build() {
|
2020-05-10 00:36:20 +00:00
|
|
|
Ok(r) => r,
|
|
|
|
Err(SwapchainCreationError::UnsupportedDimensions) => return,
|
|
|
|
Err(e) => panic!("Failed to recreate swapchain: {:?}", e),
|
|
|
|
};
|
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(),
|
|
|
|
&mut dynamic_state,
|
|
|
|
);
|
2020-01-23 07:37:12 +00:00
|
|
|
recreate_swapchain = false;
|
|
|
|
}
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let (image_num, suboptimal, acquire_future) =
|
|
|
|
match swapchain::acquire_next_image(swapchain.clone(), None) {
|
|
|
|
Ok(r) => r,
|
|
|
|
Err(AcquireError::OutOfDate) => {
|
|
|
|
recreate_swapchain = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Err(e) => panic!("Failed to acquire next image: {:?}", e),
|
|
|
|
};
|
2020-01-23 07:37:12 +00:00
|
|
|
|
2020-01-29 07:44:28 +00:00
|
|
|
if suboptimal {
|
|
|
|
recreate_swapchain = true;
|
|
|
|
}
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let clear_values = vec![[0.0, 0.0, 1.0, 1.0].into()];
|
2020-01-23 07:37:12 +00:00
|
|
|
|
|
|
|
// Allocate a GPU buffer to hold the arguments for this frames draw call. The compute
|
|
|
|
// shader will only update vertex_count, so set the other parameters correctly here.
|
2020-05-10 00:36:20 +00:00
|
|
|
let indirect_args = indirect_args_pool
|
|
|
|
.chunk(iter::once(DrawIndirectCommand {
|
2020-01-23 07:37:12 +00:00
|
|
|
vertex_count: 0,
|
|
|
|
instance_count: 1,
|
|
|
|
first_vertex: 0,
|
|
|
|
first_instance: 0,
|
2020-05-10 00:36:20 +00:00
|
|
|
}))
|
|
|
|
.unwrap();
|
2020-01-23 07:37:12 +00:00
|
|
|
|
|
|
|
// Allocate a GPU buffer to hold this frames vertices. This needs to be large enough to hold
|
|
|
|
// the worst case number of vertices generated by the compute shader
|
2020-05-10 00:36:20 +00:00
|
|
|
let vertices = vertex_pool
|
|
|
|
.chunk((0..(6 * 16)).map(|_| Vertex { position: [0.0; 2] }))
|
|
|
|
.unwrap();
|
2020-01-23 07:37:12 +00:00
|
|
|
|
|
|
|
// Pass the two buffers to the compute shader
|
|
|
|
let layout = compute_pipeline.layout().descriptor_set_layout(0).unwrap();
|
2020-05-10 00:36:20 +00:00
|
|
|
let cs_desciptor_set = Arc::new(
|
|
|
|
PersistentDescriptorSet::start(layout.clone())
|
|
|
|
.add_buffer(vertices.clone())
|
|
|
|
.unwrap()
|
|
|
|
.add_buffer(indirect_args.clone())
|
|
|
|
.unwrap()
|
|
|
|
.build()
|
|
|
|
.unwrap(),
|
2020-01-23 07:37:12 +00:00
|
|
|
);
|
|
|
|
|
2021-04-26 14:53:18 +00:00
|
|
|
let mut builder = AutoCommandBufferBuilder::primary(
|
2020-05-10 00:36:20 +00:00
|
|
|
device.clone(),
|
|
|
|
queue.family(),
|
2021-04-26 14:53:18 +00:00
|
|
|
CommandBufferUsage::OneTimeSubmit,
|
2020-05-10 00:36:20 +00:00
|
|
|
)
|
2020-06-01 14:41:42 +00:00
|
|
|
.unwrap();
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
// First in the command buffer we dispatch the compute shader to generate the vertices and fill out the draw
|
|
|
|
// call arguments
|
2020-06-01 14:41:42 +00:00
|
|
|
builder
|
|
|
|
.dispatch(
|
|
|
|
[1, 1, 1],
|
|
|
|
compute_pipeline.clone(),
|
|
|
|
cs_desciptor_set.clone(),
|
|
|
|
(),
|
2021-02-05 15:38:36 +00:00
|
|
|
vec![],
|
2020-06-01 14:41:42 +00:00
|
|
|
)
|
|
|
|
.unwrap()
|
2020-11-10 17:01:13 +00:00
|
|
|
.begin_render_pass(
|
|
|
|
framebuffers[image_num].clone(),
|
|
|
|
SubpassContents::Inline,
|
|
|
|
clear_values,
|
|
|
|
)
|
2020-06-01 14:41:42 +00:00
|
|
|
.unwrap()
|
|
|
|
// The indirect draw call is placed in the command buffer with a reference to the GPU buffer that will
|
|
|
|
// contain the arguments when the draw is executed on the GPU
|
|
|
|
.draw_indirect(
|
|
|
|
render_pipeline.clone(),
|
|
|
|
&dynamic_state,
|
|
|
|
vertices.clone(),
|
|
|
|
indirect_args.clone(),
|
|
|
|
(),
|
|
|
|
(),
|
2021-02-05 15:38:36 +00:00
|
|
|
vec![],
|
2020-06-01 14:41:42 +00:00
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.end_render_pass()
|
|
|
|
.unwrap();
|
|
|
|
let command_buffer = builder.build().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()
|
2020-01-23 07:37:12 +00:00
|
|
|
.then_swapchain_present(queue.clone(), swapchain.clone(), image_num)
|
|
|
|
.then_signal_fence_and_flush();
|
|
|
|
|
|
|
|
match future {
|
|
|
|
Ok(future) => {
|
2020-05-12 23:05:09 +00:00
|
|
|
previous_frame_end = Some(future.boxed());
|
2020-05-10 00:36:20 +00:00
|
|
|
}
|
2020-01-23 07:37:12 +00:00
|
|
|
Err(FlushError::OutOfDate) => {
|
|
|
|
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) => {
|
|
|
|
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
|
|
|
}
|
|
|
|
_ => (),
|
2019-08-03 15:42:47 +00:00
|
|
|
}
|
2020-01-23 07:37:12 +00:00
|
|
|
});
|
2019-08-03 15:42:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This method is called once during initialization, then again whenever the window is resized
|
|
|
|
fn window_size_dependent_setup(
|
|
|
|
images: &[Arc<SwapchainImage<Window>>],
|
2021-04-10 11:09:03 +00:00
|
|
|
render_pass: Arc<RenderPass>,
|
2020-05-10 00:36:20 +00:00
|
|
|
dynamic_state: &mut DynamicState,
|
2019-08-03 15:42:47 +00:00
|
|
|
) -> Vec<Arc<dyn FramebufferAbstract + Send + Sync>> {
|
|
|
|
let dimensions = images[0].dimensions();
|
|
|
|
|
|
|
|
let viewport = Viewport {
|
|
|
|
origin: [0.0, 0.0],
|
|
|
|
dimensions: [dimensions[0] as f32, dimensions[1] as f32],
|
2020-05-10 00:36:20 +00:00
|
|
|
depth_range: 0.0..1.0,
|
2019-08-03 15:42:47 +00:00
|
|
|
};
|
2020-05-10 00:36:20 +00:00
|
|
|
dynamic_state.viewports = Some(vec![viewport]);
|
|
|
|
|
|
|
|
images
|
|
|
|
.iter()
|
|
|
|
.map(|image| {
|
2021-03-14 12:09:08 +00:00
|
|
|
let view = ImageView::new(image.clone()).unwrap();
|
2020-05-10 00:36:20 +00:00
|
|
|
Arc::new(
|
|
|
|
Framebuffer::start(render_pass.clone())
|
2021-03-14 12:09:08 +00:00
|
|
|
.add(view)
|
2020-05-10 00:36:20 +00:00
|
|
|
.unwrap()
|
|
|
|
.build()
|
|
|
|
.unwrap(),
|
|
|
|
) as Arc<dyn FramebufferAbstract + Send + Sync>
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>()
|
2019-08-03 15:42:47 +00:00
|
|
|
}
|