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
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT
|
|
|
|
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
|
|
|
|
// at your option. All files in the project carrying such
|
|
|
|
// notice may not be copied, modified, or distributed except
|
|
|
|
// according to those terms.
|
|
|
|
|
2017-06-20 03:56:51 +00:00
|
|
|
// For the purpose of this example all unused code is allowed.
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2016-02-24 09:47:58 +00:00
|
|
|
extern crate cgmath;
|
2016-02-24 14:00:06 +00:00
|
|
|
extern crate image;
|
2016-02-24 09:47:58 +00:00
|
|
|
extern crate winit;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate vulkano;
|
2017-06-03 10:49:50 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate vulkano_shader_derive;
|
2016-04-23 11:32:31 +00:00
|
|
|
extern crate vulkano_win;
|
|
|
|
|
|
|
|
use vulkano_win::VkSurfaceBuild;
|
2017-04-04 07:00:11 +00:00
|
|
|
use vulkano::sync::GpuFuture;
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2017-04-04 07:00:11 +00:00
|
|
|
use std::sync::Arc;
|
2016-04-15 16:05:58 +00:00
|
|
|
use std::time::Duration;
|
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.
|
|
|
|
|
2016-05-04 05:10:00 +00:00
|
|
|
let extensions = vulkano_win::required_extensions();
|
2016-05-21 07:47:52 +00:00
|
|
|
let instance = vulkano::instance::Instance::new(None, &extensions, &[]).expect("failed to create instance");
|
2016-02-24 09:47:58 +00:00
|
|
|
|
|
|
|
let physical = vulkano::instance::PhysicalDevice::enumerate(&instance)
|
|
|
|
.next().expect("no device available");
|
|
|
|
println!("Using device: {} (type: {:?})", physical.name(), physical.ty());
|
|
|
|
|
2017-05-08 01:57:25 +00:00
|
|
|
let events_loop = winit::EventsLoop::new();
|
2017-05-26 08:51:28 +00:00
|
|
|
let window = winit::WindowBuilder::new().build_vk_surface(&events_loop, instance.clone()).unwrap();
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2017-05-26 08:42:03 +00:00
|
|
|
let queue = physical.queue_families().find(|&q| q.supports_graphics() &&
|
2016-04-23 11:32:31 +00:00
|
|
|
window.surface().is_supported(q).unwrap_or(false))
|
2016-02-24 09:47:58 +00:00
|
|
|
.expect("couldn't find a graphical queue family");
|
|
|
|
|
2016-03-12 08:08:06 +00:00
|
|
|
let device_ext = vulkano::device::DeviceExtensions {
|
|
|
|
khr_swapchain: true,
|
2016-03-30 11:44:13 +00:00
|
|
|
.. vulkano::device::DeviceExtensions::none()
|
2016-03-12 08:08:06 +00:00
|
|
|
};
|
2016-05-12 15:40:31 +00:00
|
|
|
let (device, mut queues) = vulkano::device::Device::new(&physical, physical.supported_features(),
|
2016-05-21 21:22:36 +00:00
|
|
|
&device_ext, [(queue, 0.5)].iter().cloned())
|
|
|
|
.expect("failed to create device");
|
2016-05-12 15:40:31 +00:00
|
|
|
let queue = queues.next().unwrap();
|
2016-02-24 09:47:58 +00:00
|
|
|
|
|
|
|
let (swapchain, images) = {
|
2017-05-26 08:42:03 +00:00
|
|
|
let caps = window.surface().capabilities(physical).expect("failed to get surface capabilities");
|
2016-02-24 09:47:58 +00:00
|
|
|
|
|
|
|
let dimensions = caps.current_extent.unwrap_or([1280, 1024]);
|
|
|
|
let usage = caps.supported_usage_flags;
|
|
|
|
|
2017-05-26 11:12:21 +00:00
|
|
|
vulkano::swapchain::Swapchain::new(device.clone(), window.surface().clone(), caps.min_image_count,
|
2016-02-24 20:03:04 +00:00
|
|
|
vulkano::format::B8G8R8A8Srgb, dimensions, 1,
|
2017-05-20 12:06:19 +00:00
|
|
|
usage, &queue, vulkano::swapchain::SurfaceTransform::Identity,
|
2016-02-24 09:47:58 +00:00
|
|
|
vulkano::swapchain::CompositeAlpha::Opaque,
|
2017-06-11 17:01:00 +00:00
|
|
|
vulkano::swapchain::PresentMode::Fifo, true, None).expect("failed to create swapchain")
|
2016-02-24 09:47:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-12-22 00:01:37 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2016-02-24 09:47:58 +00:00
|
|
|
struct Vertex { position: [f32; 2] }
|
|
|
|
impl_vertex!(Vertex, position);
|
|
|
|
|
2016-12-22 00:01:37 +00:00
|
|
|
let vertex_buffer = vulkano::buffer::cpu_access::CpuAccessibleBuffer::<[Vertex]>
|
2017-05-25 19:44:54 +00:00
|
|
|
::from_iter(device.clone(), vulkano::buffer::BufferUsage::all(),
|
2016-12-22 00:01:37 +00:00
|
|
|
Some(queue.family()), [
|
|
|
|
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()).expect("failed to create buffer");
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2016-02-25 07:52:22 +00:00
|
|
|
let vs = vs::Shader::load(&device).expect("failed to create shader module");
|
|
|
|
let fs = fs::Shader::load(&device).expect("failed to create shader module");
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2017-04-04 07:00:11 +00:00
|
|
|
let renderpass = Arc::new(
|
|
|
|
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
|
|
|
}
|
2017-04-04 07:00:11 +00:00
|
|
|
).unwrap()
|
|
|
|
);
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2017-05-25 19:44:54 +00:00
|
|
|
let texture = vulkano::image::immutable::ImmutableImage::new(device.clone(), vulkano::image::Dimensions::Dim2d { width: 93, height: 93 },
|
2016-03-25 16:29:05 +00:00
|
|
|
vulkano::format::R8G8B8A8Unorm, Some(queue.family())).unwrap();
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2016-02-24 14:00:06 +00:00
|
|
|
|
|
|
|
let pixel_buffer = {
|
|
|
|
let image = image::load_from_memory_with_format(include_bytes!("image_img.png"),
|
|
|
|
image::ImageFormat::PNG).unwrap().to_rgba();
|
|
|
|
let image_data = image.into_raw().clone();
|
|
|
|
|
2016-12-22 00:01:37 +00:00
|
|
|
let image_data_chunks = image_data.chunks(4).map(|c| [c[0], c[1], c[2], c[3]]);
|
2016-02-24 14:00:06 +00:00
|
|
|
|
2016-12-22 00:01:37 +00:00
|
|
|
// TODO: staging buffer instead
|
|
|
|
vulkano::buffer::cpu_access::CpuAccessibleBuffer::<[[u8; 4]]>
|
2017-05-25 19:44:54 +00:00
|
|
|
::from_iter(device.clone(), vulkano::buffer::BufferUsage::all(),
|
2016-12-22 00:01:37 +00:00
|
|
|
Some(queue.family()), image_data_chunks)
|
|
|
|
.expect("failed to create buffer")
|
2016-02-24 14:00:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-05-25 19:44:54 +00:00
|
|
|
let sampler = vulkano::sampler::Sampler::new(device.clone(), vulkano::sampler::Filter::Linear,
|
2016-02-24 14:00:06 +00:00
|
|
|
vulkano::sampler::Filter::Linear, vulkano::sampler::MipmapMode::Nearest,
|
2016-02-24 09:47:58 +00:00
|
|
|
vulkano::sampler::SamplerAddressMode::Repeat,
|
|
|
|
vulkano::sampler::SamplerAddressMode::Repeat,
|
|
|
|
vulkano::sampler::SamplerAddressMode::Repeat,
|
|
|
|
0.0, 1.0, 0.0, 0.0).unwrap();
|
|
|
|
|
2017-06-10 16:55:05 +00:00
|
|
|
let pipeline = Arc::new(vulkano::pipeline::GraphicsPipeline::start()
|
|
|
|
.vertex_input_single_buffer::<Vertex>()
|
2017-06-13 13:21:19 +00:00
|
|
|
.vertex_shader(vs.main_entry_point(), ())
|
2017-06-10 16:55:05 +00:00
|
|
|
.triangle_strip()
|
|
|
|
.viewports(std::iter::once(vulkano::pipeline::viewport::Viewport {
|
|
|
|
origin: [0.0, 0.0],
|
|
|
|
depth_range: 0.0 .. 1.0,
|
|
|
|
dimensions: [images[0].dimensions()[0] as f32, images[0].dimensions()[1] as f32],
|
|
|
|
}))
|
2017-06-13 13:21:19 +00:00
|
|
|
.fragment_shader(fs.main_entry_point(), ())
|
2017-06-10 16:55:05 +00:00
|
|
|
.render_pass(vulkano::framebuffer::Subpass::from(renderpass.clone(), 0).unwrap())
|
|
|
|
.build(device.clone())
|
|
|
|
.unwrap());
|
2017-04-04 07:00:11 +00:00
|
|
|
|
|
|
|
let set = Arc::new(simple_descriptor_set!(pipeline.clone(), 0, {
|
|
|
|
tex: (texture.clone(), sampler.clone())
|
|
|
|
}));
|
2016-02-24 09:47:58 +00:00
|
|
|
|
|
|
|
let framebuffers = images.iter().map(|image| {
|
2017-06-02 18:36:43 +00:00
|
|
|
Arc::new(vulkano::framebuffer::Framebuffer::start(renderpass.clone())
|
|
|
|
.add(image.clone()).unwrap().build().unwrap())
|
2016-02-24 09:47:58 +00:00
|
|
|
}).collect::<Vec<_>>();
|
|
|
|
|
2017-05-21 17:04:14 +00:00
|
|
|
let mut previous_frame_end = Box::new(vulkano::sync::now(device.clone())) as Box<GpuFuture>;
|
2016-02-24 09:47:58 +00:00
|
|
|
|
|
|
|
loop {
|
2017-05-21 17:04:14 +00:00
|
|
|
previous_frame_end.cleanup_finished();
|
2017-04-04 07:00:11 +00:00
|
|
|
|
2017-06-25 08:28:22 +00:00
|
|
|
let (image_num, future) = vulkano::swapchain::acquire_next_image(swapchain.clone(), None).unwrap();
|
2017-04-04 07:00:11 +00:00
|
|
|
|
|
|
|
let cb = vulkano::command_buffer::AutoCommandBufferBuilder::new(device.clone(), queue.family())
|
|
|
|
.unwrap()
|
|
|
|
.copy_buffer_to_image(pixel_buffer.clone(), texture.clone())
|
|
|
|
.unwrap()
|
|
|
|
//.clear_color_image(&texture, [0.0, 1.0, 0.0, 1.0])
|
|
|
|
.begin_render_pass(
|
|
|
|
framebuffers[image_num].clone(), false,
|
2017-06-02 18:36:43 +00:00
|
|
|
vec![[0.0, 0.0, 1.0, 1.0].into()]).unwrap()
|
2017-04-04 07:00:11 +00:00
|
|
|
.draw(pipeline.clone(), vulkano::command_buffer::DynamicState::none(), vertex_buffer.clone(),
|
2017-04-20 07:43:57 +00:00
|
|
|
set.clone(), ()).unwrap()
|
|
|
|
.end_render_pass().unwrap()
|
2017-04-04 15:41:51 +00:00
|
|
|
.build().unwrap();
|
2017-04-04 07:00:11 +00:00
|
|
|
|
2017-05-21 17:04:14 +00:00
|
|
|
let future = previous_frame_end.join(future)
|
2017-05-15 09:02:00 +00:00
|
|
|
.then_execute(queue.clone(), cb).unwrap()
|
2017-04-04 07:00:11 +00:00
|
|
|
.then_swapchain_present(queue.clone(), swapchain.clone(), image_num)
|
2017-05-06 18:10:16 +00:00
|
|
|
.then_signal_fence_and_flush().unwrap();
|
2017-05-21 17:04:14 +00:00
|
|
|
previous_frame_end = Box::new(future) as Box<_>;
|
2016-02-24 09:47:58 +00:00
|
|
|
|
2017-05-08 01:57:25 +00:00
|
|
|
let mut done = false;
|
|
|
|
events_loop.poll_events(|ev| {
|
2016-02-24 09:47:58 +00:00
|
|
|
match ev {
|
2017-05-08 01:57:25 +00:00
|
|
|
winit::Event::WindowEvent { event: winit::WindowEvent::Closed, .. } => done = true,
|
2016-02-24 09:47:58 +00:00
|
|
|
_ => ()
|
|
|
|
}
|
2017-05-08 01:57:25 +00:00
|
|
|
});
|
|
|
|
if done { return; }
|
2016-02-24 09:47:58 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-03 10:49:50 +00:00
|
|
|
|
|
|
|
mod vs {
|
|
|
|
#[derive(VulkanoShader)]
|
|
|
|
#[ty = "vertex"]
|
|
|
|
#[src = "
|
|
|
|
#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);
|
|
|
|
}
|
|
|
|
"]
|
|
|
|
struct Dummy;
|
|
|
|
}
|
|
|
|
|
|
|
|
mod fs {
|
|
|
|
#[derive(VulkanoShader)]
|
|
|
|
#[ty = "fragment"]
|
|
|
|
#[src = "
|
|
|
|
#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);
|
|
|
|
}
|
|
|
|
"]
|
|
|
|
struct Dummy;
|
|
|
|
}
|