2023-03-05 18:56:35 +00:00
|
|
|
// An immutable sampler is a sampler that is integrated into the descriptor set layout (and thus
|
|
|
|
// pipeline layout), instead of being written to an individual descriptor set. Consequently, all
|
|
|
|
// descriptor sets with this layout will share the same sampler.
|
2021-09-04 04:20:05 +00:00
|
|
|
//
|
|
|
|
// This example is almost identical to the image example, but with two differences, which have
|
|
|
|
// been commented:
|
|
|
|
// - The sampler is added to the descriptor set layout at pipeline creation.
|
|
|
|
// - No sampler is included when building a descriptor set.
|
|
|
|
|
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, CopyBufferToImageInfo, RecordingCommandBuffer, RenderPassBeginInfo,
|
2022-10-05 09:09:26 +00:00
|
|
|
},
|
|
|
|
descriptor_set::{
|
2023-11-12 16:17:37 +00:00
|
|
|
allocator::StandardDescriptorSetAllocator, DescriptorSet, WriteDescriptorSet,
|
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
|
|
|
},
|
|
|
|
format::Format,
|
|
|
|
image::{
|
2023-06-30 09:21:18 +00:00
|
|
|
sampler::{Filter, Sampler, SamplerAddressMode, SamplerCreateInfo},
|
|
|
|
view::ImageView,
|
2023-07-06 08:52:11 +00:00
|
|
|
Image, ImageCreateInfo, ImageType, ImageUsage,
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
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::{AttachmentBlend, ColorBlendAttachmentState, ColorBlendState},
|
2022-03-06 19:30:49 +00:00
|
|
|
input_assembly::{InputAssemblyState, PrimitiveTopology},
|
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, Pipeline, PipelineBindPoint, PipelineLayout,
|
2023-06-25 18:08:27 +00:00
|
|
|
PipelineShaderStageCreateInfo,
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
|
|
|
render_pass::{Framebuffer, FramebufferCreateInfo, RenderPass, Subpass},
|
|
|
|
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},
|
|
|
|
DeviceSize, 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
|
|
|
};
|
2021-09-04 04:20:05 +00:00
|
|
|
|
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();
|
2021-09-04 04:20:05 +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();
|
2021-09-04 04:20:05 +00:00
|
|
|
|
|
|
|
let device_extensions = DeviceExtensions {
|
|
|
|
khr_swapchain: true,
|
2022-09-05 20:16:40 +00:00
|
|
|
..DeviceExtensions::empty()
|
2021-09-04 04:20:05 +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-09-04 04:20:05 +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-09-04 04:20:05 +00:00
|
|
|
})
|
|
|
|
.min_by_key(|(p, _)| match p.properties().device_type {
|
|
|
|
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-09-04 04:20:05 +00:00
|
|
|
})
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
println!(
|
|
|
|
"Using device: {} (type: {:?})",
|
|
|
|
physical_device.properties().device_name,
|
|
|
|
physical_device.properties().device_type,
|
|
|
|
);
|
|
|
|
|
|
|
|
let (device, mut queues) = Device::new(
|
|
|
|
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()
|
|
|
|
},
|
2021-09-04 04:20:05 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
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;
|
2021-09-04 04:20:05 +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()
|
2021-09-04 04:20:05 +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
|
|
|
#[derive(BufferContents, Vertex)]
|
2021-11-24 14:19:57 +00:00
|
|
|
#[repr(C)]
|
2021-09-04 04:20:05 +00:00
|
|
|
struct Vertex {
|
2022-12-28 10:23:36 +00:00
|
|
|
#[format(R32G32_SFLOAT)]
|
2021-09-04 04:20:05 +00:00
|
|
|
position: [f32; 2],
|
|
|
|
}
|
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let vertices = [
|
|
|
|
Vertex {
|
|
|
|
position: [-0.5, -0.5],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [-0.5, 0.5],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [0.5, -0.5],
|
|
|
|
},
|
|
|
|
Vertex {
|
|
|
|
position: [0.5, 0.5],
|
|
|
|
},
|
|
|
|
];
|
2023-01-12 12:56:10 +00:00
|
|
|
let vertex_buffer = Buffer::from_iter(
|
2023-09-03 11:09:07 +00:00
|
|
|
memory_allocator.clone(),
|
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-03-06 19:30:49 +00:00
|
|
|
vertices,
|
2021-09-04 04:20:05 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
2023-03-25 09:25:25 +00:00
|
|
|
let render_pass = vulkano::single_pass_renderpass!(
|
|
|
|
device.clone(),
|
2021-11-02 20:33:58 +00:00
|
|
|
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();
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-11-12 14:10:22 +00:00
|
|
|
let descriptor_set_allocator = Arc::new(StandardDescriptorSetAllocator::new(
|
|
|
|
device.clone(),
|
|
|
|
Default::default(),
|
|
|
|
));
|
2023-11-14 16:57:43 +00:00
|
|
|
let command_buffer_allocator = Arc::new(StandardCommandBufferAllocator::new(
|
|
|
|
device.clone(),
|
|
|
|
Default::default(),
|
|
|
|
));
|
|
|
|
|
2023-12-20 12:04:01 +00:00
|
|
|
let mut uploads = RecordingCommandBuffer::new(
|
2023-11-14 16:57:43 +00:00
|
|
|
command_buffer_allocator.clone(),
|
2022-10-08 13:22:37 +00:00
|
|
|
queue.queue_family_index(),
|
2023-12-20 12:04:01 +00:00
|
|
|
CommandBufferLevel::Primary,
|
|
|
|
CommandBufferBeginInfo {
|
|
|
|
usage: CommandBufferUsage::OneTimeSubmit,
|
|
|
|
..Default::default()
|
|
|
|
},
|
2022-10-08 13:22:37 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2022-10-05 09:09:26 +00:00
|
|
|
|
2022-10-08 13:22:37 +00:00
|
|
|
let texture = {
|
2023-07-03 20:37:29 +00:00
|
|
|
let png_bytes = include_bytes!("image_img.png").as_slice();
|
|
|
|
let decoder = png::Decoder::new(png_bytes);
|
2021-09-04 06:41:17 +00:00
|
|
|
let mut reader = decoder.read_info().unwrap();
|
|
|
|
let info = reader.info();
|
2023-07-06 08:52:11 +00:00
|
|
|
let extent = [info.width, info.height, 1];
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-07-03 20:37:29 +00:00
|
|
|
let upload_buffer = Buffer::new_slice(
|
2023-09-03 11:09:07 +00:00
|
|
|
memory_allocator.clone(),
|
2023-07-03 20:37:29 +00:00
|
|
|
BufferCreateInfo {
|
|
|
|
usage: BufferUsage::TRANSFER_SRC,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
AllocationCreateInfo {
|
2023-07-19 09:11:17 +00:00
|
|
|
memory_type_filter: MemoryTypeFilter::PREFER_HOST
|
|
|
|
| MemoryTypeFilter::HOST_SEQUENTIAL_WRITE,
|
2023-07-03 20:37:29 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
(info.width * info.height * 4) as DeviceSize,
|
2021-09-04 04:20:05 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2023-07-03 20:37:29 +00:00
|
|
|
|
|
|
|
reader
|
|
|
|
.next_frame(&mut upload_buffer.write().unwrap())
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let image = Image::new(
|
2023-09-03 11:09:07 +00:00
|
|
|
memory_allocator,
|
2023-07-03 20:37:29 +00:00
|
|
|
ImageCreateInfo {
|
2023-07-06 08:52:11 +00:00
|
|
|
image_type: ImageType::Dim2d,
|
2023-07-14 14:44:34 +00:00
|
|
|
format: Format::R8G8B8A8_SRGB,
|
2023-07-06 08:52:11 +00:00
|
|
|
extent,
|
2023-07-03 20:37:29 +00:00
|
|
|
usage: ImageUsage::TRANSFER_DST | ImageUsage::SAMPLED,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
AllocationCreateInfo::default(),
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
uploads
|
|
|
|
.copy_buffer_to_image(CopyBufferToImageInfo::buffer_image(
|
|
|
|
upload_buffer,
|
|
|
|
image.clone(),
|
|
|
|
))
|
|
|
|
.unwrap();
|
|
|
|
|
2022-10-08 13:22:37 +00:00
|
|
|
ImageView::new_default(image).unwrap()
|
2021-09-04 04:20:05 +00:00
|
|
|
};
|
|
|
|
|
2022-02-26 08:46:53 +00:00
|
|
|
let sampler = Sampler::new(
|
|
|
|
device.clone(),
|
|
|
|
SamplerCreateInfo {
|
|
|
|
mag_filter: Filter::Linear,
|
|
|
|
min_filter: Filter::Linear,
|
|
|
|
address_mode: [SamplerAddressMode::Repeat; 3],
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
2021-09-04 04:20:05 +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 = Vertex::per_vertex()
|
|
|
|
.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 = {
|
|
|
|
let mut layout_create_info =
|
|
|
|
PipelineDescriptorSetLayoutCreateInfo::from_stages(&stages);
|
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
// Modify the auto-generated layout by setting an immutable sampler to set 0 binding 0.
|
2023-04-22 18:46:22 +00:00
|
|
|
layout_create_info.set_layouts[0]
|
|
|
|
.bindings
|
|
|
|
.get_mut(&0)
|
|
|
|
.unwrap()
|
|
|
|
.immutable_samplers = vec![sampler];
|
|
|
|
|
|
|
|
PipelineLayout::new(
|
|
|
|
device.clone(),
|
|
|
|
layout_create_info
|
|
|
|
.into_pipeline_layout_create_info(device.clone())
|
|
|
|
.unwrap(),
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
};
|
|
|
|
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(),
|
|
|
|
vertex_input_state: Some(vertex_input_state),
|
2023-10-07 14:46:03 +00:00
|
|
|
input_assembly_state: Some(InputAssemblyState {
|
|
|
|
topology: PrimitiveTopology::TriangleStrip,
|
|
|
|
..Default::default()
|
|
|
|
}),
|
|
|
|
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 {
|
|
|
|
blend: Some(AttachmentBlend::alpha()),
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)),
|
|
|
|
dynamic_state: [DynamicState::Viewport].into_iter().collect(),
|
2023-04-22 18:46:22 +00:00
|
|
|
subpass: Some(subpass.into()),
|
|
|
|
..GraphicsPipelineCreateInfo::layout(layout)
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
};
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-12-28 19:32:13 +00:00
|
|
|
let layout = &pipeline.layout().set_layouts()[0];
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
// Use `image_view` instead of `image_view_sampler`, since the sampler is already in the
|
|
|
|
// layout.
|
2023-11-12 16:17:37 +00:00
|
|
|
let set = DescriptorSet::new(
|
2023-11-12 14:10:22 +00:00
|
|
|
descriptor_set_allocator,
|
2022-10-05 09:09:26 +00:00
|
|
|
layout.clone(),
|
2023-10-08 12:10:19 +00:00
|
|
|
[WriteDescriptorSet::image_view(1, texture)],
|
2023-06-03 12:56:27 +00:00
|
|
|
[],
|
2022-10-05 09:09:26 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2021-09-04 04:20:05 +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,
|
2021-09-04 04:20:05 +00:00
|
|
|
};
|
|
|
|
let mut framebuffers = window_size_dependent_setup(&images, render_pass.clone(), &mut viewport);
|
|
|
|
|
|
|
|
let mut recreate_swapchain = false;
|
2022-10-08 13:22:37 +00:00
|
|
|
let mut previous_frame_end = Some(
|
|
|
|
uploads
|
2023-12-09 11:24:52 +00:00
|
|
|
.end()
|
2022-10-08 13:22:37 +00:00
|
|
|
.unwrap()
|
|
|
|
.execute(queue.clone())
|
|
|
|
.unwrap()
|
|
|
|
.boxed(),
|
|
|
|
);
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-10-31 17:47:17 +00:00
|
|
|
event_loop.run(move |event, elwt| {
|
|
|
|
elwt.set_control_flow(ControlFlow::Poll);
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-10-31 17:47:17 +00:00
|
|
|
match event {
|
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::CloseRequested,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
elwt.exit();
|
2021-09-04 04:20:05 +00:00
|
|
|
}
|
2023-10-31 17:47:17 +00:00
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::Resized(_),
|
|
|
|
..
|
|
|
|
} => {
|
2021-09-04 04:20:05 +00:00
|
|
|
recreate_swapchain = true;
|
|
|
|
}
|
2023-10-31 17:47:17 +00:00
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::RedrawRequested,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
let image_extent: [u32; 2] = window.inner_size().into();
|
|
|
|
|
|
|
|
if image_extent.contains(&0) {
|
|
|
|
return;
|
|
|
|
}
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-10-31 17:47:17 +00:00
|
|
|
previous_frame_end.as_mut().unwrap().cleanup_finished();
|
|
|
|
|
|
|
|
if recreate_swapchain {
|
|
|
|
let (new_swapchain, new_images) = swapchain
|
|
|
|
.recreate(SwapchainCreateInfo {
|
|
|
|
image_extent,
|
|
|
|
..swapchain.create_info()
|
|
|
|
})
|
|
|
|
.expect("failed to recreate swapchain");
|
|
|
|
|
|
|
|
swapchain = new_swapchain;
|
|
|
|
framebuffers = window_size_dependent_setup(
|
|
|
|
&new_images,
|
|
|
|
render_pass.clone(),
|
|
|
|
&mut viewport,
|
|
|
|
);
|
|
|
|
recreate_swapchain = false;
|
2021-09-04 04:20:05 +00:00
|
|
|
}
|
2023-10-31 17:47:17 +00:00
|
|
|
|
|
|
|
let (image_index, suboptimal, acquire_future) =
|
|
|
|
match acquire_next_image(swapchain.clone(), None).map_err(Validated::unwrap) {
|
|
|
|
Ok(r) => r,
|
|
|
|
Err(VulkanError::OutOfDate) => {
|
|
|
|
recreate_swapchain = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Err(e) => panic!("failed to acquire next image: {e}"),
|
|
|
|
};
|
|
|
|
|
|
|
|
if suboptimal {
|
2021-09-04 04:20:05 +00:00
|
|
|
recreate_swapchain = true;
|
|
|
|
}
|
2023-10-31 17:47:17 +00:00
|
|
|
|
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(),
|
2023-10-31 17:47:17 +00:00
|
|
|
queue.queue_family_index(),
|
2023-12-20 12:04:01 +00:00
|
|
|
CommandBufferLevel::Primary,
|
|
|
|
CommandBufferBeginInfo {
|
|
|
|
usage: CommandBufferUsage::OneTimeSubmit,
|
|
|
|
..Default::default()
|
|
|
|
},
|
2023-10-31 17:47:17 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2023-12-25 03:01:16 +00:00
|
|
|
|
2023-10-31 17:47:17 +00:00
|
|
|
builder
|
|
|
|
.begin_render_pass(
|
|
|
|
RenderPassBeginInfo {
|
|
|
|
clear_values: vec![Some([0.0, 0.0, 1.0, 1.0].into())],
|
|
|
|
..RenderPassBeginInfo::framebuffer(
|
|
|
|
framebuffers[image_index as usize].clone(),
|
|
|
|
)
|
|
|
|
},
|
|
|
|
Default::default(),
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.set_viewport(0, [viewport.clone()].into_iter().collect())
|
|
|
|
.unwrap()
|
|
|
|
.bind_pipeline_graphics(pipeline.clone())
|
|
|
|
.unwrap()
|
|
|
|
.bind_descriptor_sets(
|
|
|
|
PipelineBindPoint::Graphics,
|
|
|
|
pipeline.layout().clone(),
|
|
|
|
0,
|
|
|
|
set.clone(),
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.bind_vertex_buffers(0, vertex_buffer.clone())
|
|
|
|
.unwrap();
|
|
|
|
|
2023-12-25 03:01:16 +00:00
|
|
|
unsafe {
|
|
|
|
builder.draw(vertex_buffer.len() as u32, 1, 0, 0).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.end_render_pass(Default::default()).unwrap();
|
|
|
|
|
|
|
|
let command_buffer = builder.end().unwrap();
|
2023-10-31 17:47:17 +00:00
|
|
|
let future = previous_frame_end
|
|
|
|
.take()
|
|
|
|
.unwrap()
|
|
|
|
.join(acquire_future)
|
|
|
|
.then_execute(queue.clone(), command_buffer)
|
|
|
|
.unwrap()
|
|
|
|
.then_swapchain_present(
|
|
|
|
queue.clone(),
|
|
|
|
SwapchainPresentInfo::swapchain_image_index(swapchain.clone(), image_index),
|
|
|
|
)
|
|
|
|
.then_signal_fence_and_flush();
|
|
|
|
|
|
|
|
match future.map_err(Validated::unwrap) {
|
|
|
|
Ok(future) => {
|
|
|
|
previous_frame_end = Some(future.boxed());
|
|
|
|
}
|
|
|
|
Err(VulkanError::OutOfDate) => {
|
|
|
|
recreate_swapchain = true;
|
|
|
|
previous_frame_end = Some(sync::now(device.clone()).boxed());
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
println!("failed to flush future: {e}");
|
|
|
|
previous_frame_end = Some(sync::now(device.clone()).boxed());
|
|
|
|
}
|
2021-09-04 04:20:05 +00:00
|
|
|
}
|
|
|
|
}
|
2023-10-31 17:47:17 +00:00
|
|
|
Event::AboutToWait => window.request_redraw(),
|
|
|
|
_ => (),
|
2021-09-04 04:20:05 +00:00
|
|
|
}
|
2023-10-31 17:47:17 +00:00
|
|
|
})
|
2021-09-04 04:20:05 +00:00
|
|
|
}
|
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
/// This function is called once during initialization, then again whenever the window is resized.
|
2021-09-04 04:20:05 +00:00
|
|
|
fn window_size_dependent_setup(
|
2023-07-03 20:37:29 +00:00
|
|
|
images: &[Arc<Image>],
|
2021-09-04 04:20:05 +00:00
|
|
|
render_pass: Arc<RenderPass>,
|
|
|
|
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];
|
2021-09-04 04:20:05 +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()
|
2021-09-04 04:20:05 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
}
|
|
|
|
|
|
|
|
mod vs {
|
|
|
|
vulkano_shaders::shader! {
|
|
|
|
ty: "vertex",
|
2023-03-05 18:56:35 +00:00
|
|
|
src: r"
|
|
|
|
#version 450
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
layout(location = 0) in vec2 position;
|
|
|
|
layout(location = 0) out vec2 tex_coords;
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
void main() {
|
|
|
|
gl_Position = vec4(position, 0.0, 1.0);
|
|
|
|
tex_coords = position + vec2(0.5);
|
|
|
|
}
|
|
|
|
",
|
2021-09-04 04:20:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod fs {
|
|
|
|
vulkano_shaders::shader! {
|
|
|
|
ty: "fragment",
|
2023-03-05 18:56:35 +00:00
|
|
|
src: r"
|
|
|
|
#version 450
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
layout(location = 0) in vec2 tex_coords;
|
|
|
|
layout(location = 0) out vec4 f_color;
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-10-08 12:10:19 +00:00
|
|
|
layout(set = 0, binding = 0) uniform sampler s;
|
|
|
|
layout(set = 0, binding = 1) uniform texture2D tex;
|
2021-09-04 04:20:05 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
void main() {
|
2023-10-08 12:10:19 +00:00
|
|
|
f_color = texture(sampler2D(tex, s), tex_coords);
|
2023-03-05 18:56:35 +00:00
|
|
|
}
|
|
|
|
",
|
2021-09-04 04:20:05 +00:00
|
|
|
}
|
|
|
|
}
|