2021-11-23 12:55:32 +00:00
|
|
|
fn main() {
|
2022-03-06 19:30:49 +00:00
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
linux::main();
|
2022-09-17 15:37:22 +00:00
|
|
|
#[cfg(not(target_os = "linux"))]
|
|
|
|
println!("Not Implemented");
|
2022-03-06 19:30:49 +00:00
|
|
|
}
|
2022-01-04 21:14:18 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
// TODO: Can this be demonstrated for other platforms as well?
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
mod linux {
|
|
|
|
use glium::glutin::{self, platform::unix::HeadlessContextExt};
|
|
|
|
use std::{
|
|
|
|
sync::{Arc, Barrier},
|
|
|
|
time::Instant,
|
|
|
|
};
|
|
|
|
use vulkano::{
|
2023-04-02 13:07:16 +00:00
|
|
|
buffer::{Buffer, BufferContents, BufferCreateInfo, BufferUsage, Subbuffer},
|
2022-03-06 19:30:49 +00:00
|
|
|
command_buffer::{
|
2022-10-05 09:09:26 +00:00
|
|
|
allocator::StandardCommandBufferAllocator, AutoCommandBufferBuilder,
|
|
|
|
CommandBufferUsage, RenderPassBeginInfo, SemaphoreSubmitInfo, SubmitInfo,
|
|
|
|
},
|
|
|
|
descriptor_set::{
|
|
|
|
allocator::StandardDescriptorSetAllocator, PersistentDescriptorSet, WriteDescriptorSet,
|
2021-11-23 12:55:32 +00:00
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
device::{
|
2022-09-10 06:00:08 +00:00
|
|
|
physical::PhysicalDeviceType, Device, DeviceCreateInfo, DeviceExtensions, Queue,
|
2022-11-05 05:02:28 +00:00
|
|
|
QueueCreateInfo, QueueFlags,
|
2021-11-23 12:55:32 +00:00
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
format::Format,
|
2023-06-30 09:21:18 +00:00
|
|
|
image::{
|
|
|
|
sampler::{Filter, Sampler, SamplerAddressMode, SamplerCreateInfo},
|
2023-07-03 20:37:29 +00:00
|
|
|
sys::RawImage,
|
2023-06-30 09:21:18 +00:00
|
|
|
view::ImageView,
|
2023-07-06 08:52:11 +00:00
|
|
|
Image, ImageCreateFlags, ImageCreateInfo, ImageType, ImageUsage,
|
2023-06-30 09:21:18 +00:00
|
|
|
},
|
2022-04-16 12:54:32 +00:00
|
|
|
instance::{
|
2023-08-05 18:57:37 +00:00
|
|
|
debug::{
|
|
|
|
DebugUtilsMessenger, DebugUtilsMessengerCallback, DebugUtilsMessengerCreateInfo,
|
|
|
|
},
|
2023-06-17 20:18:48 +00:00
|
|
|
Instance, InstanceCreateFlags, InstanceCreateInfo, InstanceExtensions,
|
2022-04-16 12:54:32 +00:00
|
|
|
},
|
2023-07-03 20:37:29 +00:00
|
|
|
memory::{
|
|
|
|
allocator::{
|
2023-07-19 09:11:17 +00:00
|
|
|
AllocationCreateInfo, MemoryAlloc, MemoryAllocator, MemoryTypeFilter,
|
2023-07-03 20:37:29 +00:00
|
|
|
StandardMemoryAllocator,
|
|
|
|
},
|
|
|
|
DedicatedAllocation, DeviceMemory, ExternalMemoryHandleType, ExternalMemoryHandleTypes,
|
|
|
|
MemoryAllocateInfo,
|
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
pipeline::{
|
|
|
|
graphics::{
|
|
|
|
color_blend::ColorBlendState,
|
|
|
|
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},
|
2023-06-25 18:08:27 +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,
|
|
|
|
GraphicsPipeline, Pipeline, PipelineBindPoint, PipelineLayout,
|
2023-06-25 18:08:27 +00:00
|
|
|
PipelineShaderStageCreateInfo,
|
2021-11-23 12:55:32 +00:00
|
|
|
},
|
2023-07-03 20:37:29 +00:00
|
|
|
render_pass::{Framebuffer, FramebufferCreateInfo, RenderPass, Subpass},
|
2023-08-04 20:02:45 +00:00
|
|
|
swapchain::{
|
|
|
|
acquire_next_image, Surface, Swapchain, SwapchainCreateInfo, SwapchainPresentInfo,
|
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
sync::{
|
2022-11-15 08:05:03 +00:00
|
|
|
now,
|
|
|
|
semaphore::{
|
|
|
|
ExternalSemaphoreHandleType, ExternalSemaphoreHandleTypes, Semaphore,
|
|
|
|
SemaphoreCreateInfo,
|
|
|
|
},
|
2023-08-04 20:02:45 +00:00
|
|
|
GpuFuture,
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
2023-08-04 20:02:45 +00:00
|
|
|
Validated, VulkanError, VulkanLibrary,
|
2022-03-06 19:30:49 +00:00
|
|
|
};
|
|
|
|
use winit::{
|
|
|
|
event::{Event, WindowEvent},
|
|
|
|
event_loop::{ControlFlow, EventLoop},
|
|
|
|
window::{Window, WindowBuilder},
|
|
|
|
};
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
pub fn main() {
|
2023-03-11 20:14:37 +00:00
|
|
|
let event_loop_gl = winit_glium::event_loop::EventLoop::new();
|
|
|
|
// For some reason, this must be created before the vulkan window
|
2022-03-06 19:30:49 +00:00
|
|
|
let hrb = glutin::ContextBuilder::new()
|
|
|
|
.with_gl_debug_flag(true)
|
|
|
|
.with_gl(glutin::GlRequest::Latest)
|
2023-03-11 20:14:37 +00:00
|
|
|
.build_surfaceless(&event_loop_gl)
|
2022-03-06 19:30:49 +00:00
|
|
|
.unwrap();
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let hrb_vk = glutin::ContextBuilder::new()
|
|
|
|
.with_gl_debug_flag(true)
|
|
|
|
.with_gl(glutin::GlRequest::Latest)
|
2023-03-11 20:14:37 +00:00
|
|
|
.build_surfaceless(&event_loop_gl)
|
2022-03-06 19:30:49 +00:00
|
|
|
.unwrap();
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
// Used for checking device and driver UUIDs.
|
2022-03-06 19:30:49 +00:00
|
|
|
let display = glium::HeadlessRenderer::with_debug(
|
|
|
|
hrb_vk,
|
|
|
|
glium::debug::DebugCallbackBehavior::PrintAll,
|
2022-02-26 08:42:14 +00:00
|
|
|
)
|
2023-03-05 18:56:35 +00:00
|
|
|
.unwrap();
|
|
|
|
|
2023-03-11 20:14:37 +00:00
|
|
|
let event_loop = EventLoop::new();
|
2022-03-06 19:30:49 +00:00
|
|
|
let (
|
|
|
|
device,
|
|
|
|
_instance,
|
|
|
|
mut swapchain,
|
2023-05-12 07:52:20 +00:00
|
|
|
window,
|
2022-03-06 19:30:49 +00:00
|
|
|
mut viewport,
|
|
|
|
queue,
|
|
|
|
render_pass,
|
|
|
|
mut framebuffers,
|
|
|
|
sampler,
|
|
|
|
pipeline,
|
2022-10-26 14:25:01 +00:00
|
|
|
memory_allocator,
|
2022-03-06 19:30:49 +00:00
|
|
|
vertex_buffer,
|
2022-09-17 15:37:22 +00:00
|
|
|
) = vk_setup(display, &event_loop);
|
2022-03-06 19:30:49 +00:00
|
|
|
|
2023-07-03 20:37:29 +00:00
|
|
|
let raw_image = RawImage::new(
|
|
|
|
device.clone(),
|
|
|
|
ImageCreateInfo {
|
|
|
|
flags: ImageCreateFlags::MUTABLE_FORMAT,
|
2023-07-06 08:52:11 +00:00
|
|
|
image_type: ImageType::Dim2d,
|
2023-07-14 14:44:34 +00:00
|
|
|
format: Format::R16G16B16A16_UNORM,
|
2023-07-06 08:52:11 +00:00
|
|
|
extent: [200, 200, 1],
|
2023-07-03 20:37:29 +00:00
|
|
|
usage: ImageUsage::TRANSFER_SRC | ImageUsage::TRANSFER_DST | ImageUsage::SAMPLED,
|
|
|
|
external_memory_handle_types: ExternalMemoryHandleTypes::OPAQUE_FD,
|
|
|
|
..Default::default()
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
2022-02-26 08:42:14 +00:00
|
|
|
)
|
2021-11-23 12:55:32 +00:00
|
|
|
.unwrap();
|
|
|
|
|
2023-07-03 20:37:29 +00:00
|
|
|
let image_requirements = raw_image.memory_requirements()[0];
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2023-07-03 20:37:29 +00:00
|
|
|
let image_memory = DeviceMemory::allocate(
|
|
|
|
device.clone(),
|
|
|
|
MemoryAllocateInfo {
|
|
|
|
allocation_size: image_requirements.layout.size(),
|
|
|
|
memory_type_index: memory_allocator
|
|
|
|
.find_memory_type_index(
|
|
|
|
image_requirements.memory_type_bits,
|
2023-07-19 09:11:17 +00:00
|
|
|
MemoryTypeFilter::PREFER_DEVICE,
|
2023-07-03 20:37:29 +00:00
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
dedicated_allocation: Some(DedicatedAllocation::Image(&raw_image)),
|
|
|
|
export_handle_types: ExternalMemoryHandleTypes::OPAQUE_FD,
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let allocation_size = image_memory.allocation_size();
|
|
|
|
let image_fd = image_memory
|
|
|
|
.export_fd(ExternalMemoryHandleType::OpaqueFd)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let image = Arc::new(
|
|
|
|
raw_image
|
2023-08-24 14:46:38 +00:00
|
|
|
.bind_memory([MemoryAlloc::new(image_memory)])
|
2023-07-03 20:37:29 +00:00
|
|
|
.map_err(|(err, _, _)| err)
|
|
|
|
.unwrap(),
|
|
|
|
);
|
|
|
|
|
|
|
|
let image_view = ImageView::new_default(image).unwrap();
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let barrier = Arc::new(Barrier::new(2));
|
|
|
|
let barrier_2 = Arc::new(Barrier::new(2));
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let acquire_sem = Arc::new(
|
|
|
|
Semaphore::new(
|
|
|
|
device.clone(),
|
|
|
|
SemaphoreCreateInfo {
|
2022-11-05 05:02:28 +00:00
|
|
|
export_handle_types: ExternalSemaphoreHandleTypes::OPAQUE_FD,
|
2022-03-06 19:30:49 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
);
|
|
|
|
let release_sem = Arc::new(
|
|
|
|
Semaphore::new(
|
|
|
|
device.clone(),
|
|
|
|
SemaphoreCreateInfo {
|
2022-11-05 05:02:28 +00:00
|
|
|
export_handle_types: ExternalSemaphoreHandleTypes::OPAQUE_FD,
|
2022-03-06 19:30:49 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
);
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-10-13 00:04:54 +00:00
|
|
|
let acquire_fd = acquire_sem
|
|
|
|
.export_fd(ExternalSemaphoreHandleType::OpaqueFd)
|
|
|
|
.unwrap();
|
|
|
|
let release_fd = release_sem
|
|
|
|
.export_fd(ExternalSemaphoreHandleType::OpaqueFd)
|
|
|
|
.unwrap();
|
2022-03-06 19:30:49 +00:00
|
|
|
|
|
|
|
let barrier_clone = barrier.clone();
|
|
|
|
let barrier_2_clone = barrier_2.clone();
|
2023-07-03 20:37:29 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
build_display(hrb, move |gl_display| {
|
|
|
|
let gl_tex = unsafe {
|
|
|
|
glium::texture::Texture2d::new_from_fd(
|
|
|
|
gl_display.as_ref(),
|
|
|
|
glium::texture::UncompressedFloatFormat::U16U16U16U16,
|
|
|
|
glium::texture::MipmapsOption::NoMipmap,
|
|
|
|
glium::texture::Dimensions::Texture2d {
|
|
|
|
width: 200,
|
|
|
|
height: 200,
|
|
|
|
},
|
|
|
|
glium::texture::ImportParameters {
|
|
|
|
dedicated_memory: true,
|
2023-07-03 20:37:29 +00:00
|
|
|
size: allocation_size,
|
2022-03-06 19:30:49 +00:00
|
|
|
offset: 0,
|
|
|
|
tiling: glium::texture::ExternalTilingMode::Optimal,
|
|
|
|
},
|
|
|
|
image_fd,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
.unwrap();
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let gl_acquire_sem = unsafe {
|
|
|
|
glium::semaphore::Semaphore::new_from_fd(gl_display.as_ref(), acquire_fd).unwrap()
|
|
|
|
};
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let gl_release_sem = unsafe {
|
|
|
|
glium::semaphore::Semaphore::new_from_fd(gl_display.as_ref(), release_fd).unwrap()
|
|
|
|
};
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let rotation_start = Instant::now();
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
loop {
|
|
|
|
barrier_clone.wait();
|
|
|
|
gl_acquire_sem
|
|
|
|
.wait_textures(Some(&[(&gl_tex, glium::semaphore::TextureLayout::General)]));
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
gl_display.get_context().flush();
|
2021-12-05 21:11:59 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let elapsed = rotation_start.elapsed();
|
|
|
|
let rotation = elapsed.as_nanos() as f64 / 2_000_000_000.0;
|
2021-12-05 21:11:59 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
use glium::Surface;
|
|
|
|
{
|
|
|
|
let mut fb = gl_tex.as_surface();
|
2021-12-05 21:11:59 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
fb.clear_color(
|
|
|
|
0.0,
|
|
|
|
(((rotation as f32).sin() + 1.) / 2.).powf(2.2),
|
|
|
|
0.0,
|
|
|
|
1.0,
|
2021-12-05 21:11:59 +00:00
|
|
|
);
|
|
|
|
}
|
2022-03-06 19:30:49 +00:00
|
|
|
gl_release_sem
|
|
|
|
.signal_textures(Some(&[(&gl_tex, glium::semaphore::TextureLayout::General)]));
|
|
|
|
barrier_2_clone.wait();
|
2021-12-05 21:11:59 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
gl_display.get_context().finish();
|
2021-12-05 21:11:59 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
gl_display.get_context().assert_no_error(Some("err"));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-10-05 09:09:26 +00:00
|
|
|
let descriptor_set_allocator = StandardDescriptorSetAllocator::new(device.clone());
|
2022-10-29 17:34:07 +00:00
|
|
|
let command_buffer_allocator =
|
|
|
|
StandardCommandBufferAllocator::new(device.clone(), Default::default());
|
2022-10-05 09:09:26 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let layout = pipeline.layout().set_layouts().get(0).unwrap();
|
|
|
|
|
|
|
|
let set = PersistentDescriptorSet::new(
|
2022-10-05 09:09:26 +00:00
|
|
|
&descriptor_set_allocator,
|
2022-03-06 19:30:49 +00:00
|
|
|
layout.clone(),
|
|
|
|
[WriteDescriptorSet::image_view_sampler(
|
2022-08-12 10:18:35 +00:00
|
|
|
0, image_view, sampler,
|
2022-03-06 19:30:49 +00:00
|
|
|
)],
|
2023-06-03 12:56:27 +00:00
|
|
|
[],
|
2022-03-06 19:30:49 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let mut recreate_swapchain = false;
|
|
|
|
let mut previous_frame_end: Option<Box<dyn GpuFuture>> =
|
|
|
|
Some(Box::new(now(device.clone())));
|
|
|
|
|
|
|
|
event_loop.run(move |event, _, control_flow| {
|
|
|
|
match event {
|
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::CloseRequested,
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
*control_flow = ControlFlow::Exit;
|
|
|
|
}
|
|
|
|
Event::WindowEvent {
|
|
|
|
event: WindowEvent::Resized(_),
|
|
|
|
..
|
|
|
|
} => {
|
2021-12-05 21:11:59 +00:00
|
|
|
recreate_swapchain = true;
|
|
|
|
}
|
2022-03-06 19:30:49 +00:00
|
|
|
Event::RedrawEventsCleared => {
|
2022-10-02 02:32:17 +00:00
|
|
|
queue
|
|
|
|
.with(|mut q| unsafe {
|
|
|
|
q.submit_unchecked(
|
2022-09-27 07:58:47 +00:00
|
|
|
[SubmitInfo {
|
|
|
|
signal_semaphores: vec![SemaphoreSubmitInfo::semaphore(
|
|
|
|
acquire_sem.clone(),
|
|
|
|
)],
|
|
|
|
..Default::default()
|
|
|
|
}],
|
|
|
|
None,
|
|
|
|
)
|
2022-10-02 02:32:17 +00:00
|
|
|
})
|
|
|
|
.unwrap();
|
2021-12-05 21:11:59 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
barrier.wait();
|
|
|
|
barrier_2.wait();
|
|
|
|
|
2022-10-02 02:32:17 +00:00
|
|
|
queue
|
|
|
|
.with(|mut q| unsafe {
|
|
|
|
q.submit_unchecked(
|
2022-09-27 07:58:47 +00:00
|
|
|
[SubmitInfo {
|
|
|
|
wait_semaphores: vec![SemaphoreSubmitInfo::semaphore(
|
|
|
|
release_sem.clone(),
|
|
|
|
)],
|
|
|
|
..Default::default()
|
|
|
|
}],
|
|
|
|
None,
|
|
|
|
)
|
2022-10-02 02:32:17 +00:00
|
|
|
})
|
|
|
|
.unwrap();
|
2021-12-05 21:11:59 +00:00
|
|
|
|
2023-06-26 09:17:53 +00:00
|
|
|
let image_extent: [u32; 2] = window.inner_size().into();
|
|
|
|
|
|
|
|
if image_extent.contains(&0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-03-06 19:30:49 +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-03-06 19:30:49 +00:00
|
|
|
..swapchain.create_info()
|
2023-06-26 09:17:53 +00:00
|
|
|
})
|
|
|
|
.expect("failed to recreate swapchain");
|
2022-03-06 19:30:49 +00:00
|
|
|
|
|
|
|
swapchain = new_swapchain;
|
|
|
|
framebuffers = window_size_dependent_setup(
|
|
|
|
&new_images,
|
|
|
|
render_pass.clone(),
|
|
|
|
&mut viewport,
|
|
|
|
);
|
|
|
|
recreate_swapchain = false;
|
|
|
|
}
|
2021-12-05 21:11:59 +00:00
|
|
|
|
2023-08-04 20:02:45 +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}"),
|
|
|
|
};
|
2021-12-05 21:11:59 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
if suboptimal {
|
2021-12-05 21:11:59 +00:00
|
|
|
recreate_swapchain = true;
|
|
|
|
}
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let mut builder = AutoCommandBufferBuilder::primary(
|
2022-10-05 09:09:26 +00:00
|
|
|
&command_buffer_allocator,
|
2022-09-10 06:00:08 +00:00
|
|
|
queue.queue_family_index(),
|
2022-03-06 19:30:49 +00:00
|
|
|
CommandBufferUsage::OneTimeSubmit,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
builder
|
|
|
|
.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(),
|
2022-03-06 19:30:49 +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()
|
2022-03-06 19:30:49 +00:00
|
|
|
.bind_pipeline_graphics(pipeline.clone())
|
2023-08-04 18:55:16 +00:00
|
|
|
.unwrap()
|
2022-03-06 19:30:49 +00:00
|
|
|
.bind_descriptor_sets(
|
|
|
|
PipelineBindPoint::Graphics,
|
|
|
|
pipeline.layout().clone(),
|
|
|
|
0,
|
|
|
|
set.clone(),
|
|
|
|
)
|
2023-08-04 18:55:16 +00:00
|
|
|
.unwrap()
|
2022-03-06 19:30:49 +00:00
|
|
|
.bind_vertex_buffers(0, vertex_buffer.clone())
|
2023-08-04 18:55:16 +00:00
|
|
|
.unwrap()
|
2022-03-06 19:30:49 +00:00
|
|
|
.draw(vertex_buffer.len() as u32, 1, 0, 0)
|
|
|
|
.unwrap()
|
2023-08-04 18:55:16 +00:00
|
|
|
.end_render_pass(Default::default())
|
2022-03-06 19:30:49 +00:00
|
|
|
.unwrap();
|
|
|
|
let command_buffer = builder.build().unwrap();
|
|
|
|
|
|
|
|
let future = previous_frame_end.take().unwrap().join(acquire_future);
|
|
|
|
|
|
|
|
let future = future
|
|
|
|
.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
|
|
|
)
|
2022-03-06 19:30:49 +00:00
|
|
|
.then_signal_fence_and_flush();
|
|
|
|
|
2023-08-04 20:02:45 +00:00
|
|
|
match future.map_err(Validated::unwrap) {
|
2022-03-06 19:30:49 +00:00
|
|
|
Ok(future) => {
|
|
|
|
future.wait(None).unwrap();
|
|
|
|
previous_frame_end = Some(future.boxed());
|
|
|
|
}
|
2023-08-04 20:02:45 +00:00
|
|
|
Err(VulkanError::OutOfDate) => {
|
2022-03-06 19:30:49 +00:00
|
|
|
recreate_swapchain = true;
|
|
|
|
previous_frame_end = Some(vulkano::sync::now(device.clone()).boxed());
|
|
|
|
}
|
|
|
|
Err(e) => {
|
2023-03-05 18:56:35 +00:00
|
|
|
println!("failed to flush future: {e}");
|
2022-03-06 19:30:49 +00:00
|
|
|
previous_frame_end = Some(vulkano::sync::now(device.clone()).boxed());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
_ => (),
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2023-03-05 18:56:35 +00:00
|
|
|
#[derive(BufferContents, Vertex)]
|
2022-03-06 19:30:49 +00:00
|
|
|
#[repr(C)]
|
2022-12-28 10:23:36 +00:00
|
|
|
struct MyVertex {
|
|
|
|
#[format(R32G32_SFLOAT)]
|
2022-03-06 19:30:49 +00:00
|
|
|
position: [f32; 2],
|
|
|
|
}
|
|
|
|
|
2022-08-12 10:18:35 +00:00
|
|
|
#[allow(clippy::type_complexity)]
|
2022-03-06 19:30:49 +00:00
|
|
|
fn vk_setup(
|
|
|
|
display: glium::HeadlessRenderer,
|
2022-09-17 15:37:22 +00:00
|
|
|
event_loop: &EventLoop<()>,
|
2022-03-06 19:30:49 +00:00
|
|
|
) -> (
|
2023-05-12 07:52:20 +00:00
|
|
|
Arc<Device>,
|
|
|
|
Arc<Instance>,
|
2022-10-20 07:26:34 +00:00
|
|
|
Arc<Swapchain>,
|
2023-05-12 07:52:20 +00:00
|
|
|
Arc<Window>,
|
|
|
|
Viewport,
|
2022-03-06 19:30:49 +00:00
|
|
|
Arc<Queue>,
|
|
|
|
Arc<RenderPass>,
|
|
|
|
Vec<Arc<Framebuffer>>,
|
2023-05-12 07:52:20 +00:00
|
|
|
Arc<Sampler>,
|
2022-03-06 19:30:49 +00:00
|
|
|
Arc<GraphicsPipeline>,
|
2022-10-26 14:25:01 +00:00
|
|
|
StandardMemoryAllocator,
|
2023-01-12 12:56:10 +00:00
|
|
|
Subbuffer<[MyVertex]>,
|
2022-03-06 19:30:49 +00:00
|
|
|
) {
|
2022-07-30 06:53:52 +00:00
|
|
|
let library = VulkanLibrary::new().unwrap();
|
2023-05-12 07:52:20 +00:00
|
|
|
let required_extensions = Surface::required_extensions(&event_loop);
|
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: InstanceExtensions {
|
|
|
|
khr_get_physical_device_properties2: true,
|
|
|
|
khr_external_memory_capabilities: true,
|
|
|
|
khr_external_semaphore_capabilities: true,
|
|
|
|
khr_external_fence_capabilities: true,
|
|
|
|
ext_debug_utils: true,
|
2023-05-12 07:52:20 +00:00
|
|
|
..required_extensions
|
|
|
|
},
|
2022-07-30 06:53:52 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
2021-11-23 12:55:32 +00:00
|
|
|
.unwrap();
|
|
|
|
|
2022-04-16 12:54:32 +00:00
|
|
|
let _debug_callback = unsafe {
|
|
|
|
DebugUtilsMessenger::new(
|
|
|
|
instance.clone(),
|
2023-08-05 18:57:37 +00:00
|
|
|
DebugUtilsMessengerCreateInfo::user_callback(DebugUtilsMessengerCallback::new(
|
|
|
|
|message_severity, message_type, callback_data| {
|
|
|
|
println!(
|
|
|
|
"{} {:?} {:?}: {}",
|
|
|
|
callback_data.message_id_name.unwrap_or("unknown"),
|
|
|
|
message_type,
|
|
|
|
message_severity,
|
|
|
|
callback_data.message,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
)),
|
2022-04-16 12:54:32 +00:00
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
};
|
2021-11-23 12:55:32 +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-11-23 12:55:32 +00:00
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let device_extensions = DeviceExtensions {
|
|
|
|
khr_external_semaphore: true,
|
|
|
|
khr_external_semaphore_fd: true,
|
|
|
|
khr_external_memory: true,
|
|
|
|
khr_external_memory_fd: true,
|
|
|
|
khr_external_fence: true,
|
|
|
|
khr_external_fence_fd: true,
|
|
|
|
khr_swapchain: true,
|
2022-09-05 20:16:40 +00:00
|
|
|
..DeviceExtensions::empty()
|
2022-03-06 19:30:49 +00:00
|
|
|
};
|
2021-11-23 12:55:32 +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))
|
2022-03-06 19:30:49 +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)
|
2022-09-10 06:00:08 +00:00
|
|
|
&& p.surface_support(i as u32, &surface).unwrap_or(false)
|
2022-03-06 19:30:49 +00:00
|
|
|
})
|
2022-09-10 06:00:08 +00:00
|
|
|
.map(|i| (p, i as u32))
|
2022-03-06 19:30:49 +00:00
|
|
|
})
|
|
|
|
.filter(|(p, _)| p.properties().driver_uuid.unwrap() == display.driver_uuid().unwrap())
|
|
|
|
.filter(|(p, _)| {
|
|
|
|
display
|
|
|
|
.device_uuids()
|
|
|
|
.unwrap()
|
|
|
|
.contains(&p.properties().device_uuid.unwrap())
|
|
|
|
})
|
|
|
|
.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,
|
2022-03-06 19:30:49 +00:00
|
|
|
})
|
2022-02-20 09:55:34 +00:00
|
|
|
.unwrap();
|
2022-03-06 19:30:49 +00:00
|
|
|
|
|
|
|
println!(
|
|
|
|
"Using device: {} (type: {:?})",
|
|
|
|
physical_device.properties().device_name,
|
|
|
|
physical_device.properties().device_type,
|
2022-02-20 09:55:34 +00:00
|
|
|
);
|
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let (device, mut queues) = Device::new(
|
|
|
|
physical_device,
|
|
|
|
DeviceCreateInfo {
|
|
|
|
enabled_extensions: device_extensions,
|
2022-09-10 06:00:08 +00:00
|
|
|
queue_create_infos: vec![QueueCreateInfo {
|
|
|
|
queue_family_index,
|
|
|
|
..Default::default()
|
|
|
|
}],
|
2022-02-20 09:55:34 +00:00
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
2022-03-06 19:30:49 +00:00
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let queue = queues.next().unwrap();
|
|
|
|
|
|
|
|
let (swapchain, images) = {
|
2022-09-10 06:00:08 +00:00
|
|
|
let surface_capabilities = device
|
|
|
|
.physical_device()
|
2022-03-06 19:30:49 +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;
|
2022-03-06 19:30:49 +00:00
|
|
|
|
|
|
|
Swapchain::new(
|
|
|
|
device.clone(),
|
2023-05-12 18:26:49 +00:00
|
|
|
surface,
|
2022-03-06 19:30:49 +00:00
|
|
|
SwapchainCreateInfo {
|
2023-06-02 20:01:38 +00:00
|
|
|
min_image_count: surface_capabilities.min_image_count.max(2),
|
2022-03-06 19:30:49 +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-03-06 19:30:49 +00:00
|
|
|
composite_alpha: surface_capabilities
|
|
|
|
.supported_composite_alpha
|
2022-11-05 05:02:28 +00:00
|
|
|
.into_iter()
|
2022-03-06 19:30:49 +00:00
|
|
|
.next()
|
|
|
|
.unwrap(),
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
};
|
2021-11-23 12:55:32 +00:00
|
|
|
|
2022-10-26 14:25:01 +00:00
|
|
|
let memory_allocator = StandardMemoryAllocator::new_default(device.clone());
|
|
|
|
|
2022-03-06 19:30:49 +00:00
|
|
|
let vertices = [
|
2022-12-28 10:23:36 +00:00
|
|
|
MyVertex {
|
2021-11-23 12:55:32 +00:00
|
|
|
position: [-0.5, -0.5],
|
|
|
|
},
|
2022-12-28 10:23:36 +00:00
|
|
|
MyVertex {
|
2021-11-23 12:55:32 +00:00
|
|
|
position: [-0.5, 0.5],
|
|
|
|
},
|
2022-12-28 10:23:36 +00:00
|
|
|
MyVertex {
|
2021-11-23 12:55:32 +00:00
|
|
|
position: [0.5, -0.5],
|
|
|
|
},
|
2022-12-28 10:23:36 +00:00
|
|
|
MyVertex {
|
2021-11-23 12:55:32 +00:00
|
|
|
position: [0.5, 0.5],
|
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
];
|
2023-01-12 12:56:10 +00:00
|
|
|
let vertex_buffer = Buffer::from_iter(
|
2022-10-26 14:25:01 +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-03-06 19:30:49 +00:00
|
|
|
vertices,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let render_pass = vulkano::single_pass_renderpass!(device.clone(),
|
|
|
|
attachments: {
|
|
|
|
color: {
|
|
|
|
format: swapchain.image_format(),
|
|
|
|
samples: 1,
|
2023-06-17 19:01:50 +00:00
|
|
|
load_op: Clear,
|
|
|
|
store_op: Store,
|
2023-03-25 09:25:25 +00:00
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
},
|
|
|
|
pass: {
|
|
|
|
color: [color],
|
2023-03-25 09:25:25 +00:00
|
|
|
depth_stencil: {},
|
|
|
|
},
|
2022-03-06 19:30:49 +00:00
|
|
|
)
|
2021-11-23 12:55:32 +00:00
|
|
|
.unwrap();
|
|
|
|
|
2022-03-06 19:30:49 +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-11-23 12:55:32 +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 = MyVertex::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 = PipelineLayout::new(
|
|
|
|
device.clone(),
|
|
|
|
PipelineDescriptorSetLayoutCreateInfo::from_stages(&stages)
|
|
|
|
.into_pipeline_layout_create_info(device.clone())
|
|
|
|
.unwrap(),
|
2022-02-20 00:14:16 +00:00
|
|
|
)
|
2022-03-06 19:30:49 +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(),
|
|
|
|
vertex_input_state: Some(vertex_input_state),
|
|
|
|
input_assembly_state: Some(
|
|
|
|
InputAssemblyState::new().topology(PrimitiveTopology::TriangleStrip),
|
|
|
|
),
|
2023-06-25 18:08:27 +00:00
|
|
|
viewport_state: Some(ViewportState::viewport_dynamic_scissor_irrelevant()),
|
2023-04-22 18:46:22 +00:00
|
|
|
rasterization_state: Some(RasterizationState::default()),
|
|
|
|
multisample_state: Some(MultisampleState::default()),
|
|
|
|
color_blend_state: Some(
|
|
|
|
ColorBlendState::new(subpass.num_color_attachments()).blend_alpha(),
|
|
|
|
),
|
|
|
|
subpass: Some(subpass.into()),
|
|
|
|
..GraphicsPipelineCreateInfo::layout(layout)
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
};
|
2022-03-06 19:30:49 +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,
|
2022-03-06 19:30:49 +00:00
|
|
|
};
|
|
|
|
let framebuffers = window_size_dependent_setup(&images, render_pass.clone(), &mut viewport);
|
|
|
|
|
|
|
|
(
|
|
|
|
device,
|
|
|
|
instance,
|
|
|
|
swapchain,
|
2023-05-12 07:52:20 +00:00
|
|
|
window,
|
2022-03-06 19:30:49 +00:00
|
|
|
viewport,
|
|
|
|
queue,
|
|
|
|
render_pass,
|
|
|
|
framebuffers,
|
|
|
|
sampler,
|
|
|
|
pipeline,
|
2022-10-26 14:25:01 +00:00
|
|
|
memory_allocator,
|
2022-03-06 19:30:49 +00:00
|
|
|
vertex_buffer,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn build_display<F>(ctx: glutin::Context<glutin::NotCurrent>, f: F)
|
|
|
|
where
|
|
|
|
F: FnOnce(Box<dyn glium::backend::Facade>),
|
|
|
|
F: Send + 'static,
|
|
|
|
{
|
|
|
|
std::thread::spawn(move || {
|
|
|
|
let display = Box::new(
|
|
|
|
glium::HeadlessRenderer::with_debug(
|
|
|
|
ctx,
|
|
|
|
glium::debug::DebugCallbackBehavior::PrintAll,
|
|
|
|
)
|
|
|
|
.unwrap(),
|
|
|
|
);
|
|
|
|
|
|
|
|
f(display);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn window_size_dependent_setup(
|
2023-07-03 20:37:29 +00:00
|
|
|
images: &[Arc<Image>],
|
2022-03-06 19:30:49 +00:00
|
|
|
render_pass: Arc<RenderPass>,
|
|
|
|
viewport: &mut Viewport,
|
|
|
|
) -> 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];
|
2022-03-06 19:30:49 +00:00
|
|
|
|
|
|
|
images
|
|
|
|
.iter()
|
2023-05-12 07:52:20 +00:00
|
|
|
.map(|image| {
|
2022-03-06 19:30:49 +00:00
|
|
|
let view = ImageView::new_default(image.clone()).unwrap();
|
|
|
|
|
|
|
|
Framebuffer::new(
|
|
|
|
render_pass.clone(),
|
|
|
|
FramebufferCreateInfo {
|
|
|
|
attachments: vec![view],
|
|
|
|
..Default::default()
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
}
|
|
|
|
|
|
|
|
mod vs {
|
|
|
|
vulkano_shaders::shader! {
|
|
|
|
ty: "vertex",
|
2023-03-05 18:56:35 +00:00
|
|
|
src: r"
|
|
|
|
#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);
|
|
|
|
}
|
|
|
|
",
|
2022-03-06 19:30:49 +00:00
|
|
|
}
|
2021-11-23 12:55:32 +00:00
|
|
|
}
|
2022-03-06 19:30:49 +00:00
|
|
|
|
|
|
|
mod fs {
|
|
|
|
vulkano_shaders::shader! {
|
|
|
|
ty: "fragment",
|
2023-03-05 18:56:35 +00:00
|
|
|
src: r"
|
|
|
|
#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);
|
|
|
|
}
|
|
|
|
",
|
2022-03-06 19:30:49 +00:00
|
|
|
}
|
2021-11-23 12:55:32 +00:00
|
|
|
}
|
|
|
|
}
|