2016-03-26 09:17:37 +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>,
|
2016-03-26 09:17:37 +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-10-28 03:02:29 +00:00
|
|
|
use vulkano::buffer::{BufferUsage, CpuAccessibleBuffer};
|
2021-04-26 14:53:18 +00:00
|
|
|
use vulkano::command_buffer::{
|
|
|
|
AutoCommandBufferBuilder, CommandBufferUsage, DynamicState, SubpassContents,
|
|
|
|
};
|
2018-10-28 03:02:29 +00:00
|
|
|
use vulkano::descriptor::descriptor_set::PersistentDescriptorSet;
|
|
|
|
use vulkano::device::{Device, DeviceExtensions};
|
|
|
|
use vulkano::format::Format;
|
2021-03-14 12:09:08 +00:00
|
|
|
use vulkano::image::{
|
|
|
|
view::ImageView, ImageDimensions, ImageUsage, ImmutableImage, MipmapsCount, SwapchainImage,
|
|
|
|
};
|
2018-10-28 03:02:29 +00:00
|
|
|
use vulkano::instance::{Instance, PhysicalDevice};
|
2018-10-27 21:16:30 +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};
|
2020-05-10 00:36:20 +00:00
|
|
|
use vulkano::sampler::{Filter, MipmapMode, Sampler, SamplerAddressMode};
|
2018-10-28 03:02:29 +00:00
|
|
|
use vulkano::swapchain;
|
2020-05-10 00:36:20 +00:00
|
|
|
use vulkano::swapchain::{
|
|
|
|
AcquireError, ColorSpace, FullscreenExclusive, PresentMode, SurfaceTransform, 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};
|
2018-10-28 03:02:29 +00:00
|
|
|
|
2021-04-26 14:53:18 +00:00
|
|
|
use png;
|
|
|
|
use std::io::Cursor;
|
|
|
|
use std::sync::Arc;
|
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-28 03:02:29 +00:00
|
|
|
|
2016-02-24 09:47:58 +00:00
|
|
|
fn main() {
|
|
|
|
// The start of this example is exactly the same as `triangle`. You should read the
|
|
|
|
// `triangle` example if you haven't done so yet.
|
|
|
|
|
2020-01-23 07:37:12 +00:00
|
|
|
let required_extensions = vulkano_win::required_extensions();
|
|
|
|
let instance = Instance::new(None, &required_extensions, None).unwrap();
|
2018-10-28 03:02:29 +00:00
|
|
|
let physical = PhysicalDevice::enumerate(&instance).next().unwrap();
|
2020-05-10 00:36:20 +00:00
|
|
|
println!(
|
|
|
|
"Using device: {} (type: {:?})",
|
|
|
|
physical.name(),
|
|
|
|
physical.ty()
|
|
|
|
);
|
2016-02-24 09:47:58 +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();
|
|
|
|
|
|
|
|
let queue_family = physical
|
|
|
|
.queue_families()
|
|
|
|
.find(|&q| q.supports_graphics() && surface.is_supported(q).unwrap_or(false))
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let device_ext = DeviceExtensions {
|
|
|
|
khr_swapchain: true,
|
|
|
|
..DeviceExtensions::none()
|
|
|
|
};
|
|
|
|
let (device, mut queues) = Device::new(
|
|
|
|
physical,
|
|
|
|
physical.supported_features(),
|
|
|
|
&device_ext,
|
|
|
|
[(queue_family, 0.5)].iter().cloned(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2016-05-12 15:40:31 +00:00
|
|
|
let queue = queues.next().unwrap();
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2018-10-27 21:16:30 +00:00
|
|
|
let (mut swapchain, images) = {
|
2018-10-28 03:02:29 +00:00
|
|
|
let caps = surface.capabilities(physical).unwrap();
|
|
|
|
let alpha = caps.supported_composite_alpha.iter().next().unwrap();
|
|
|
|
let format = caps.supported_formats[0].0;
|
2020-01-23 07:37:12 +00:00
|
|
|
let dimensions: [u32; 2] = surface.window().inner_size().into();
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
Swapchain::new(
|
|
|
|
device.clone(),
|
|
|
|
surface.clone(),
|
|
|
|
caps.min_image_count,
|
|
|
|
format,
|
|
|
|
dimensions,
|
|
|
|
1,
|
2020-06-01 07:10:02 +00:00
|
|
|
ImageUsage::color_attachment(),
|
2020-05-10 00:36:20 +00:00
|
|
|
&queue,
|
|
|
|
SurfaceTransform::Identity,
|
|
|
|
alpha,
|
|
|
|
PresentMode::Fifo,
|
|
|
|
FullscreenExclusive::Default,
|
|
|
|
true,
|
|
|
|
ColorSpace::SrgbNonLinear,
|
|
|
|
)
|
|
|
|
.unwrap()
|
2016-02-24 09:47:58 +00:00
|
|
|
};
|
|
|
|
|
2019-07-01 21:02:48 +00:00
|
|
|
#[derive(Default, Debug, Clone)]
|
2020-05-10 00:36:20 +00:00
|
|
|
struct Vertex {
|
|
|
|
position: [f32; 2],
|
|
|
|
}
|
2018-12-07 12:35:19 +00:00
|
|
|
vulkano::impl_vertex!(Vertex, position);
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2018-10-28 03:02:29 +00:00
|
|
|
let vertex_buffer = CpuAccessibleBuffer::<[Vertex]>::from_iter(
|
|
|
|
device.clone(),
|
|
|
|
BufferUsage::all(),
|
2020-01-26 14:12:44 +00:00
|
|
|
false,
|
2018-10-28 03:02:29 +00:00
|
|
|
[
|
2020-05-10 00:36:20 +00:00
|
|
|
Vertex {
|
|
|
|
position: [-0.5, -0.5],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [-0.5, 0.5],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [0.5, -0.5],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [0.5, 0.5],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
.iter()
|
|
|
|
.cloned(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2018-10-28 03:02:29 +00:00
|
|
|
let vs = vs::Shader::load(device.clone()).unwrap();
|
|
|
|
let fs = fs::Shader::load(device.clone()).unwrap();
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2018-10-27 21:16:30 +00:00
|
|
|
let render_pass = Arc::new(
|
2018-12-07 12:35:19 +00:00
|
|
|
vulkano::single_pass_renderpass!(device.clone(),
|
2016-02-26 15:21:06 +00:00
|
|
|
attachments: {
|
|
|
|
color: {
|
|
|
|
load: Clear,
|
|
|
|
store: Store,
|
2017-05-26 11:12:21 +00:00
|
|
|
format: swapchain.format(),
|
2017-04-04 07:00:11 +00:00
|
|
|
samples: 1,
|
2016-02-26 15:21:06 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
pass: {
|
|
|
|
color: [color],
|
|
|
|
depth_stencil: {}
|
2016-02-24 12:14:51 +00:00
|
|
|
}
|
2020-05-10 00:36:20 +00:00
|
|
|
)
|
|
|
|
.unwrap(),
|
2017-04-04 07:00:11 +00:00
|
|
|
);
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2017-07-22 18:08:52 +00:00
|
|
|
let (texture, tex_future) = {
|
2019-10-27 16:58:32 +00:00
|
|
|
let png_bytes = include_bytes!("image_img.png").to_vec();
|
|
|
|
let cursor = Cursor::new(png_bytes);
|
|
|
|
let decoder = png::Decoder::new(cursor);
|
|
|
|
let (info, mut reader) = decoder.read_info().unwrap();
|
2021-03-14 12:09:08 +00:00
|
|
|
let dimensions = ImageDimensions::Dim2d {
|
2020-05-10 00:36:20 +00:00
|
|
|
width: info.width,
|
|
|
|
height: info.height,
|
2021-03-14 12:09:08 +00:00
|
|
|
array_layers: 1,
|
2020-05-10 00:36:20 +00:00
|
|
|
};
|
2019-10-27 16:58:32 +00:00
|
|
|
let mut image_data = Vec::new();
|
|
|
|
image_data.resize((info.width * info.height * 4) as usize, 0);
|
|
|
|
reader.next_frame(&mut image_data).unwrap();
|
2016-02-24 14:00:06 +00:00
|
|
|
|
2021-03-14 12:09:08 +00:00
|
|
|
let (image, future) = ImmutableImage::from_iter(
|
2017-07-22 18:08:52 +00:00
|
|
|
image_data.iter().cloned(),
|
2019-10-03 11:14:43 +00:00
|
|
|
dimensions,
|
2020-12-19 03:08:48 +00:00
|
|
|
MipmapsCount::One,
|
2018-10-28 03:02:29 +00:00
|
|
|
Format::R8G8B8A8Srgb,
|
2020-05-10 00:36:20 +00:00
|
|
|
queue.clone(),
|
|
|
|
)
|
2021-03-14 12:09:08 +00:00
|
|
|
.unwrap();
|
|
|
|
(ImageView::new(image).unwrap(), future)
|
2016-02-24 14:00:06 +00:00
|
|
|
};
|
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let sampler = Sampler::new(
|
|
|
|
device.clone(),
|
|
|
|
Filter::Linear,
|
|
|
|
Filter::Linear,
|
|
|
|
MipmapMode::Nearest,
|
|
|
|
SamplerAddressMode::Repeat,
|
|
|
|
SamplerAddressMode::Repeat,
|
|
|
|
SamplerAddressMode::Repeat,
|
|
|
|
0.0,
|
|
|
|
1.0,
|
|
|
|
0.0,
|
|
|
|
0.0,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let pipeline = Arc::new(
|
|
|
|
GraphicsPipeline::start()
|
|
|
|
.vertex_input_single_buffer::<Vertex>()
|
|
|
|
.vertex_shader(vs.main_entry_point(), ())
|
|
|
|
.triangle_strip()
|
|
|
|
.viewports_dynamic_scissors_irrelevant(1)
|
|
|
|
.fragment_shader(fs.main_entry_point(), ())
|
|
|
|
.blend_alpha_blending()
|
|
|
|
.render_pass(Subpass::from(render_pass.clone(), 0).unwrap())
|
|
|
|
.build(device.clone())
|
|
|
|
.unwrap(),
|
|
|
|
);
|
2017-04-04 07:00:11 +00:00
|
|
|
|
2019-11-24 09:07:29 +00:00
|
|
|
let layout = pipeline.layout().descriptor_set_layout(0).unwrap();
|
2020-05-10 00:36:20 +00:00
|
|
|
let set = Arc::new(
|
|
|
|
PersistentDescriptorSet::start(layout.clone())
|
|
|
|
.add_sampled_image(texture.clone(), sampler.clone())
|
|
|
|
.unwrap()
|
|
|
|
.build()
|
|
|
|
.unwrap(),
|
2017-07-06 12:53:23 +00:00
|
|
|
);
|
2016-02-24 09:47:58 +00:00
|
|
|
|
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);
|
2017-07-26 15:58:40 +00:00
|
|
|
|
|
|
|
let mut recreate_swapchain = false;
|
2020-05-12 23:05:09 +00:00
|
|
|
let mut previous_frame_end = Some(tex_future.boxed());
|
2017-07-26 15:58:40 +00:00
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
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) =
|
|
|
|
match swapchain.recreate_with_dimensions(dimensions) {
|
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;
|
|
|
|
}
|
2016-02-24 09:47:58 +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
|
|
|
|
2020-05-10 00:36:20 +00:00
|
|
|
let clear_values = vec![[0.0, 0.0, 1.0, 1.0].into()];
|
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
|
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()
|
|
|
|
.draw(
|
|
|
|
pipeline.clone(),
|
|
|
|
&dynamic_state,
|
|
|
|
vertex_buffer.clone(),
|
|
|
|
set.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()
|
|
|
|
.unwrap()
|
|
|
|
.join(acquire_future)
|
2020-06-01 14:41:42 +00:00
|
|
|
.then_execute(queue.clone(), command_buffer)
|
2020-05-10 00:36:20 +00:00
|
|
|
.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
|
|
|
}
|
|
|
|
}
|
2020-01-23 07:37:12 +00:00
|
|
|
}
|
2020-05-10 00:36:20 +00:00
|
|
|
_ => (),
|
2020-01-23 07:37:12 +00:00
|
|
|
});
|
2016-02-24 09:47:58 +00:00
|
|
|
}
|
2017-06-03 10:49:50 +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
|
|
|
}
|
|
|
|
|
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: "
|
2017-06-03 10:49:50 +00:00
|
|
|
#version 450
|
|
|
|
|
|
|
|
layout(location = 0) in vec2 position;
|
|
|
|
layout(location = 0) out vec2 tex_coords;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
gl_Position = vec4(position, 0.0, 1.0);
|
|
|
|
tex_coords = position + vec2(0.5);
|
2018-10-26 00:15:33 +00:00
|
|
|
}"
|
2018-10-27 23:10:29 +00:00
|
|
|
}
|
2017-06-03 10:49:50 +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: "
|
2017-06-03 10:49:50 +00:00
|
|
|
#version 450
|
|
|
|
|
|
|
|
layout(location = 0) in vec2 tex_coords;
|
|
|
|
layout(location = 0) out vec4 f_color;
|
|
|
|
|
|
|
|
layout(set = 0, binding = 0) uniform sampler2D tex;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
f_color = texture(tex, tex_coords);
|
2018-10-26 00:15:33 +00:00
|
|
|
}"
|
2018-10-27 23:10:29 +00:00
|
|
|
}
|
2017-06-03 10:49:50 +00:00
|
|
|
}
|