2018-08-24 10:01:00 +00:00
|
|
|
// Copyright (c) 2016 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>,
|
2018-08-24 10:01:00 +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.
|
|
|
|
|
2018-08-24 16:32:39 +00:00
|
|
|
// Some relevant documentation:
|
|
|
|
// * Tessellation overview https://www.khronos.org/opengl/wiki/Tessellation
|
|
|
|
// * Tessellation Control Shader https://www.khronos.org/opengl/wiki/Tessellation_Control_Shader
|
|
|
|
// * Tessellation Evaluation Shader https://www.khronos.org/opengl/wiki/Tessellation_Evaluation_Shader
|
|
|
|
// * Tessellation real-world usage 1 http://ogldev.atspace.co.uk/www/tutorial30/tutorial30.html
|
2020-11-10 17:03:50 +00:00
|
|
|
// * Tessellation real-world usage 2 https://prideout.net/blog/?p=48
|
2018-08-24 16:32:39 +00:00
|
|
|
|
|
|
|
// Notable elements of this example:
|
|
|
|
// * tessellation control shader and a tessellation evaluation shader
|
|
|
|
// * tessellation_shaders(..), patch_list(3) and polygon_mode_line() are called on the pipeline builder
|
2018-08-24 10:01:00 +00:00
|
|
|
|
2021-04-26 14:53:18 +00:00
|
|
|
use std::sync::Arc;
|
2021-08-12 14:14:02 +00:00
|
|
|
use vulkano::buffer::{BufferUsage, CpuAccessibleBuffer, TypedBufferAccess};
|
2021-04-26 14:53:18 +00:00
|
|
|
use vulkano::command_buffer::{
|
|
|
|
AutoCommandBufferBuilder, CommandBufferUsage, DynamicState, SubpassContents,
|
|
|
|
};
|
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;
|
2018-08-24 10:01:00 +00:00
|
|
|
use vulkano::pipeline::viewport::Viewport;
|
2020-05-10 00:36:20 +00:00
|
|
|
use vulkano::pipeline::GraphicsPipeline;
|
2021-04-10 11:09:03 +00:00
|
|
|
use vulkano::render_pass::{Framebuffer, FramebufferAbstract, RenderPass, Subpass};
|
2018-10-28 03:02:29 +00:00
|
|
|
use vulkano::swapchain;
|
2021-05-03 13:07:41 +00:00
|
|
|
use vulkano::swapchain::{AcquireError, Swapchain, SwapchainCreationError};
|
2018-10-28 03:02:29 +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;
|
2018-10-28 03:02:29 +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};
|
2018-10-27 21:16:30 +00:00
|
|
|
|
2018-10-27 23:10:29 +00:00
|
|
|
mod vs {
|
2020-05-10 00:36:20 +00:00
|
|
|
vulkano_shaders::shader! {
|
2018-10-27 23:10:29 +00:00
|
|
|
ty: "vertex",
|
|
|
|
src: "
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
2018-10-26 00:15:33 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
layout(location = 0) in vec2 position;
|
2018-10-26 00:15:33 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
void main() {
|
|
|
|
gl_Position = vec4(position, 0.0, 1.0);
|
|
|
|
}
|
|
|
|
"
|
2018-10-27 23:10:29 +00:00
|
|
|
}
|
2018-10-26 00:15:33 +00:00
|
|
|
}
|
|
|
|
|
2018-10-27 23:10:29 +00:00
|
|
|
mod tcs {
|
2020-05-10 00:36:20 +00:00
|
|
|
vulkano_shaders::shader! {
|
2018-10-27 23:10:29 +00:00
|
|
|
ty: "tess_ctrl",
|
|
|
|
src: "
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
|
|
|
|
|
|
|
layout (vertices = 3) out; // a value of 3 means a patch consists of a single triangle
|
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
// save the position of the patch, so the tes can access it
|
|
|
|
// We could define our own output variables for this,
|
|
|
|
// but gl_out is handily provided.
|
|
|
|
gl_out[gl_InvocationID].gl_Position = gl_in[gl_InvocationID].gl_Position;
|
|
|
|
|
|
|
|
gl_TessLevelInner[0] = 10; // many triangles are generated in the center
|
|
|
|
gl_TessLevelOuter[0] = 1; // no triangles are generated for this edge
|
|
|
|
gl_TessLevelOuter[1] = 10; // many triangles are generated for this edge
|
|
|
|
gl_TessLevelOuter[2] = 10; // many triangles are generated for this edge
|
|
|
|
// gl_TessLevelInner[1] = only used when tes uses layout(quads)
|
|
|
|
// gl_TessLevelOuter[3] = only used when tes uses layout(quads)
|
|
|
|
}
|
|
|
|
"
|
2018-10-27 23:10:29 +00:00
|
|
|
}
|
2018-10-26 00:15:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PG
|
|
|
|
// There is a stage in between tcs and tes called Primitive Generation (PG)
|
|
|
|
// Shaders cannot be defined for it.
|
|
|
|
// It takes gl_TessLevelInner and gl_TessLevelOuter and uses them to generate positions within
|
|
|
|
// the patch and pass them to tes via gl_TessCoord.
|
|
|
|
//
|
|
|
|
// When tes uses layout(triangles) then gl_TessCoord is in barrycentric coordinates.
|
|
|
|
// if layout(quads) is used then gl_TessCoord is in cartesian coordinates.
|
|
|
|
// Barrycentric coordinates are of the form (x, y, z) where x + y + z = 1
|
|
|
|
// and the values x, y and z represent the distance from a vertex of the triangle.
|
2020-11-10 17:03:50 +00:00
|
|
|
// https://mathworld.wolfram.com/BarycentricCoordinates.html
|
2018-10-26 00:15:33 +00:00
|
|
|
|
2018-10-27 23:10:29 +00:00
|
|
|
mod tes {
|
2020-05-10 00:36:20 +00:00
|
|
|
vulkano_shaders::shader! {
|
2018-10-27 23:10:29 +00:00
|
|
|
ty: "tess_eval",
|
|
|
|
src: "
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
|
|
|
|
|
|
|
layout(triangles, equal_spacing, cw) in;
|
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
// retrieve the vertex positions set by the tcs
|
|
|
|
vec4 vert_x = gl_in[0].gl_Position;
|
|
|
|
vec4 vert_y = gl_in[1].gl_Position;
|
|
|
|
vec4 vert_z = gl_in[2].gl_Position;
|
|
|
|
|
|
|
|
// convert gl_TessCoord from barycentric coordinates to cartesian coordinates
|
|
|
|
gl_Position = vec4(
|
|
|
|
gl_TessCoord.x * vert_x.x + gl_TessCoord.y * vert_y.x + gl_TessCoord.z * vert_z.x,
|
|
|
|
gl_TessCoord.x * vert_x.y + gl_TessCoord.y * vert_y.y + gl_TessCoord.z * vert_z.y,
|
|
|
|
gl_TessCoord.x * vert_x.z + gl_TessCoord.y * vert_y.z + gl_TessCoord.z * vert_z.z,
|
|
|
|
1.0
|
|
|
|
);
|
|
|
|
}
|
|
|
|
"
|
2018-10-27 23:10:29 +00:00
|
|
|
}
|
2018-10-26 00:15:33 +00:00
|
|
|
}
|
|
|
|
|
2018-10-27 23:10:29 +00:00
|
|
|
mod fs {
|
2020-05-10 00:36:20 +00:00
|
|
|
vulkano_shaders::shader! {
|
2018-10-27 23:10:29 +00:00
|
|
|
ty: "fragment",
|
|
|
|
src: "
|
2020-01-23 07:37:12 +00:00
|
|
|
#version 450
|
2018-10-26 00:15:33 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
layout(location = 0) out vec4 f_color;
|
2018-10-26 00:15:33 +00:00
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
void main() {
|
|
|
|
f_color = vec4(1.0, 1.0, 1.0, 1.0);
|
|
|
|
}
|
|
|
|
"
|
2018-10-27 23:10:29 +00:00
|
|
|
}
|
2018-10-26 00:15:33 +00:00
|
|
|
}
|
|
|
|
|
2018-08-24 10:01:00 +00:00
|
|
|
fn main() {
|
2020-01-23 07:37:12 +00:00
|
|
|
let required_extensions = vulkano_win::required_extensions();
|
2021-05-30 20:42:51 +00:00
|
|
|
let instance = Instance::new(None, Version::V1_1, &required_extensions, None).unwrap();
|
2018-08-24 10:01:00 +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,
|
|
|
|
..DeviceExtensions::none()
|
|
|
|
};
|
2021-06-28 06:24:44 +00:00
|
|
|
let features = Features {
|
|
|
|
tessellation_shader: true,
|
|
|
|
fill_mode_non_solid: true,
|
|
|
|
..Features::none()
|
|
|
|
};
|
|
|
|
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))
|
|
|
|
.filter(|&p| p.supported_features().is_superset_of(&features))
|
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))
|
|
|
|
})
|
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,
|
|
|
|
})
|
|
|
|
.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,
|
|
|
|
&features,
|
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();
|
2018-08-24 10:01:00 +00:00
|
|
|
let queue = queues.next().unwrap();
|
|
|
|
|
2018-10-27 21:16:30 +00:00
|
|
|
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();
|
2018-08-24 10:01:00 +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();
|
2018-08-24 10:01:00 +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()
|
2018-08-24 10:01:00 +00:00
|
|
|
};
|
|
|
|
|
2021-07-05 04:19:32 +00:00
|
|
|
#[derive(Default, Debug, Clone)]
|
|
|
|
struct Vertex {
|
|
|
|
position: [f32; 2],
|
|
|
|
}
|
|
|
|
vulkano::impl_vertex!(Vertex, position);
|
2018-08-24 10:01:00 +00:00
|
|
|
|
2021-07-05 04:19:32 +00:00
|
|
|
let vertex_buffer = CpuAccessibleBuffer::from_iter(
|
|
|
|
device.clone(),
|
|
|
|
BufferUsage::all(),
|
|
|
|
false,
|
|
|
|
[
|
|
|
|
Vertex {
|
|
|
|
position: [-0.5, -0.25],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [0.0, 0.5],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [0.25, -0.1],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [0.9, 0.9],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [0.9, 0.8],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [0.8, 0.8],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [-0.9, 0.9],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [-0.7, 0.6],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [-0.5, 0.9],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
.iter()
|
|
|
|
.cloned(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2018-08-24 10:01:00 +00:00
|
|
|
|
2018-10-28 03:02:29 +00:00
|
|
|
let vs = vs::Shader::load(device.clone()).unwrap();
|
|
|
|
let tcs = tcs::Shader::load(device.clone()).unwrap();
|
|
|
|
let tes = tes::Shader::load(device.clone()).unwrap();
|
|
|
|
let fs = fs::Shader::load(device.clone()).unwrap();
|
2018-08-24 10:01:00 +00:00
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let render_pass = Arc::new(
|
|
|
|
vulkano::single_pass_renderpass!(
|
|
|
|
device.clone(),
|
|
|
|
attachments: {
|
|
|
|
color: {
|
|
|
|
load: Clear,
|
|
|
|
store: Store,
|
|
|
|
format: swapchain.format(),
|
|
|
|
samples: 1,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
pass: {
|
|
|
|
color: [color],
|
|
|
|
depth_stencil: {}
|
2018-08-24 10:01:00 +00:00
|
|
|
}
|
2020-05-10 00:36:20 +00:00
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
);
|
|
|
|
|
|
|
|
let pipeline = Arc::new(
|
|
|
|
GraphicsPipeline::start()
|
2021-07-05 04:19:32 +00:00
|
|
|
.vertex_input_single_buffer::<Vertex>()
|
2020-05-10 00:36:20 +00:00
|
|
|
.vertex_shader(vs.main_entry_point(), ())
|
|
|
|
// Actually use the tessellation shaders.
|
|
|
|
.tessellation_shaders(tcs.main_entry_point(), (), tes.main_entry_point(), ())
|
|
|
|
// use PrimitiveTopology::PathList(3)
|
|
|
|
// Use a vertices_per_patch of 3, because we want to convert one triangle into lots of
|
|
|
|
// little ones. A value of 4 would convert a rectangle into lots of little triangles.
|
|
|
|
.patch_list(3)
|
|
|
|
// Enable line mode so we can see the generated vertices.
|
|
|
|
.polygon_mode_line()
|
|
|
|
.viewports_dynamic_scissors_irrelevant(1)
|
|
|
|
.fragment_shader(fs.main_entry_point(), ())
|
|
|
|
.render_pass(Subpass::from(render_pass.clone(), 0).unwrap())
|
|
|
|
.build(device.clone())
|
|
|
|
.unwrap(),
|
|
|
|
);
|
2018-08-24 10:01:00 +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());
|
2020-05-10 00:36:20 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
event_loop.run(move |event, _, control_flow| match event {
|
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::CloseRequested,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
*control_flow = ControlFlow::Exit;
|
|
|
|
}
|
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::Resized(_),
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
recreate_swapchain = true;
|
|
|
|
}
|
|
|
|
Event::RedrawEventsCleared => {
|
|
|
|
previous_frame_end.as_mut().unwrap().cleanup_finished();
|
2020-01-23 07:37:12 +00:00
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
if recreate_swapchain {
|
|
|
|
let dimensions: [u32; 2] = surface.window().inner_size().into();
|
|
|
|
let (new_swapchain, new_images) =
|
2021-05-03 13:07:41 +00:00
|
|
|
match swapchain.recreate().dimensions(dimensions).build() {
|
2020-01-23 07:37:12 +00:00
|
|
|
Ok(r) => r,
|
|
|
|
Err(SwapchainCreationError::UnsupportedDimensions) => return,
|
2020-05-10 00:36:20 +00:00
|
|
|
Err(e) => panic!("Failed to recreate swapchain: {:?}", e),
|
2020-01-23 07:37:12 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
swapchain = new_swapchain;
|
|
|
|
framebuffers = window_size_dependent_setup(
|
|
|
|
&new_images,
|
|
|
|
render_pass.clone(),
|
|
|
|
&mut dynamic_state,
|
|
|
|
);
|
|
|
|
recreate_swapchain = false;
|
|
|
|
}
|
2020-01-23 07:37:12 +00:00
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let (image_num, suboptimal, acquire_future) =
|
|
|
|
match swapchain::acquire_next_image(swapchain.clone(), None) {
|
2020-01-23 07:37:12 +00:00
|
|
|
Ok(r) => r,
|
|
|
|
Err(AcquireError::OutOfDate) => {
|
|
|
|
recreate_swapchain = true;
|
|
|
|
return;
|
2020-05-10 00:36:20 +00:00
|
|
|
}
|
|
|
|
Err(e) => panic!("Failed to acquire next image: {:?}", e),
|
2020-01-23 07:37:12 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
if suboptimal {
|
|
|
|
recreate_swapchain = true;
|
|
|
|
}
|
2020-01-29 07:44:28 +00:00
|
|
|
|
2021-04-26 14:53:18 +00:00
|
|
|
let mut builder = AutoCommandBufferBuilder::primary(
|
|
|
|
device.clone(),
|
|
|
|
queue.family(),
|
|
|
|
CommandBufferUsage::OneTimeSubmit,
|
|
|
|
)
|
|
|
|
.unwrap();
|
2020-06-01 14:41:42 +00:00
|
|
|
builder
|
|
|
|
.begin_render_pass(
|
|
|
|
framebuffers[image_num].clone(),
|
2020-11-10 17:01:13 +00:00
|
|
|
SubpassContents::Inline,
|
2020-06-01 14:41:42 +00:00
|
|
|
vec![[0.0, 0.0, 0.0, 1.0].into()],
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.draw(
|
2021-08-12 14:14:02 +00:00
|
|
|
vertex_buffer.len() as u32,
|
|
|
|
1,
|
|
|
|
0,
|
|
|
|
0,
|
2020-06-01 14:41:42 +00:00
|
|
|
pipeline.clone(),
|
|
|
|
&dynamic_state,
|
|
|
|
vertex_buffer.clone(),
|
|
|
|
(),
|
|
|
|
(),
|
|
|
|
)
|
|
|
|
.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()
|
|
|
|
.unwrap()
|
|
|
|
.join(acquire_future)
|
|
|
|
.then_execute(queue.clone(), command_buffer)
|
|
|
|
.unwrap()
|
|
|
|
.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-01-23 07:37:12 +00:00
|
|
|
}
|
2020-05-10 00:36:20 +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-05-10 00:36:20 +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-05-10 00:36:20 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-24 10:01:00 +00:00
|
|
|
}
|
2020-05-10 00:36:20 +00:00
|
|
|
_ => (),
|
2020-01-23 07:37:12 +00:00
|
|
|
});
|
2018-08-24 10:01:00 +00:00
|
|
|
}
|
2018-10-27 21:16:30 +00:00
|
|
|
|
2018-10-28 03:02:29 +00:00
|
|
|
/// This method is called once during initialization, then again whenever the window is resized
|
2018-10-27 21:16:30 +00:00
|
|
|
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-07-02 08:25:58 +00:00
|
|
|
) -> Vec<Arc<dyn FramebufferAbstract + Send + Sync>> {
|
2018-10-27 21:16:30 +00:00
|
|
|
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,
|
2018-10-27 21:16:30 +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<_>>()
|
2018-10-27 21:16:30 +00:00
|
|
|
}
|