2016-12-26 00:38:26 +11:00
|
|
|
#[macro_use]
|
|
|
|
extern crate ash;
|
2018-07-07 14:45:52 +10:00
|
|
|
#[cfg(target_os = "windows")]
|
2016-12-26 12:35:43 +11:00
|
|
|
extern crate winapi;
|
2018-12-07 01:58:12 +11:00
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
extern crate winit;
|
2016-12-26 00:38:26 +11:00
|
|
|
|
2018-07-07 14:45:52 +10:00
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
extern crate cocoa;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
extern crate metal_rs as metal;
|
|
|
|
#[cfg(target_os = "macos")]
|
2018-11-18 05:05:28 +11:00
|
|
|
extern crate objc;
|
|
|
|
#[cfg(target_os = "macos")]
|
2018-07-07 14:45:52 +10:00
|
|
|
use cocoa::appkit::{NSView, NSWindow};
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
use cocoa::base::id as cocoa_id;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
use metal::CoreAnimationLayer;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
use objc::runtime::YES;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
use std::mem;
|
|
|
|
|
2018-11-18 05:05:28 +11:00
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
use ash::extensions::MacOSSurface;
|
2018-07-07 14:45:52 +10:00
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
use ash::extensions::Win32Surface;
|
|
|
|
#[cfg(all(unix, not(target_os = "android"), not(target_os = "macos")))]
|
|
|
|
use ash::extensions::XlibSurface;
|
2018-11-18 05:05:28 +11:00
|
|
|
use ash::extensions::{DebugReport, Surface, Swapchain};
|
|
|
|
pub use ash::version::{DeviceV1_0, EntryV1_0, InstanceV1_0};
|
|
|
|
use ash::vk;
|
|
|
|
use ash::Device;
|
|
|
|
use ash::Entry;
|
|
|
|
use ash::Instance;
|
2017-12-13 00:25:10 +11:00
|
|
|
use std::cell::RefCell;
|
2018-07-31 22:51:45 +10:00
|
|
|
use std::default::Default;
|
2016-12-26 00:38:26 +11:00
|
|
|
use std::ffi::{CStr, CString};
|
|
|
|
use std::ops::Drop;
|
2018-08-29 03:01:16 +10:00
|
|
|
use std::os::raw::{c_char, c_void};
|
2018-12-07 05:58:31 +11:00
|
|
|
use std::ptr;
|
2016-12-26 00:38:26 +11:00
|
|
|
|
|
|
|
// Simple offset_of macro akin to C++ offsetof
|
|
|
|
#[macro_export]
|
2018-07-31 22:51:45 +10:00
|
|
|
macro_rules! offset_of {
|
|
|
|
($base:path, $field:ident) => {{
|
|
|
|
#[allow(unused_unsafe)]
|
|
|
|
unsafe {
|
|
|
|
let b: $base = mem::uninitialized();
|
|
|
|
(&b.$field as *const _ as isize) - (&b as *const _ as isize)
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
2018-07-31 22:51:45 +10:00
|
|
|
}};
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
|
|
|
|
2018-12-07 01:58:12 +11:00
|
|
|
fn u32_from_bytes(bytes: &[u8; 4]) -> u32 {
|
2018-12-07 06:18:37 +11:00
|
|
|
unsafe { std::mem::transmute(*bytes) }
|
2018-12-07 01:58:12 +11:00
|
|
|
}
|
|
|
|
|
2018-12-07 06:18:37 +11:00
|
|
|
pub fn bytes_to_u32_vec<B>(bytes: B) -> Vec<u32>
|
|
|
|
where
|
|
|
|
B: Iterator<Item = u8>,
|
2018-12-07 01:58:12 +11:00
|
|
|
{
|
|
|
|
let mut output = vec![];
|
2018-12-07 06:18:37 +11:00
|
|
|
let mut buffer: [u8; 4] = [0, 0, 0, 0];
|
2018-12-07 06:36:05 +11:00
|
|
|
let mut l: usize = 0;
|
2018-12-07 06:18:37 +11:00
|
|
|
for (i, b) in bytes.enumerate() {
|
2018-12-07 06:36:05 +11:00
|
|
|
l = i;
|
2018-12-07 01:58:12 +11:00
|
|
|
match i % 4 {
|
|
|
|
3 => {
|
|
|
|
buffer[3] = b;
|
|
|
|
output.push(u32_from_bytes(&buffer));
|
2018-12-07 06:18:37 +11:00
|
|
|
buffer = [0, 0, 0, 0];
|
|
|
|
}
|
|
|
|
idx => buffer[idx] = b,
|
2018-12-07 01:58:12 +11:00
|
|
|
}
|
|
|
|
}
|
2018-12-07 06:36:05 +11:00
|
|
|
if (l+1) % 4 != 0 {
|
2018-12-07 01:58:12 +11:00
|
|
|
output.push(u32_from_bytes(&buffer));
|
|
|
|
}
|
|
|
|
output
|
|
|
|
}
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
pub fn record_submit_commandbuffer<D: DeviceV1_0, F: FnOnce(&D, vk::CommandBuffer)>(
|
|
|
|
device: &D,
|
|
|
|
command_buffer: vk::CommandBuffer,
|
|
|
|
submit_queue: vk::Queue,
|
|
|
|
wait_mask: &[vk::PipelineStageFlags],
|
|
|
|
wait_semaphores: &[vk::Semaphore],
|
|
|
|
signal_semaphores: &[vk::Semaphore],
|
|
|
|
f: F,
|
|
|
|
) {
|
2016-12-26 00:38:26 +11:00
|
|
|
unsafe {
|
2017-12-13 00:25:10 +11:00
|
|
|
device
|
|
|
|
.reset_command_buffer(
|
|
|
|
command_buffer,
|
2018-07-31 20:45:29 +10:00
|
|
|
vk::CommandBufferResetFlags::RELEASE_RESOURCES,
|
2018-08-03 05:22:46 +10:00
|
|
|
).expect("Reset command buffer failed.");
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let command_buffer_begin_info = vk::CommandBufferBeginInfo::default();
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
device
|
|
|
|
.begin_command_buffer(command_buffer, &command_buffer_begin_info)
|
2016-12-26 00:38:26 +11:00
|
|
|
.expect("Begin commandbuffer");
|
|
|
|
f(device, command_buffer);
|
2017-12-13 00:25:10 +11:00
|
|
|
device
|
|
|
|
.end_command_buffer(command_buffer)
|
|
|
|
.expect("End commandbuffer");
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let fence_create_info = vk::FenceCreateInfo::default();
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
let submit_fence = device
|
|
|
|
.create_fence(&fence_create_info, None)
|
2016-12-28 19:24:24 +11:00
|
|
|
.expect("Create fence failed.");
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let submit_info = vk::SubmitInfo::builder()
|
|
|
|
.wait_semaphores(wait_semaphores)
|
|
|
|
.command_buffers(&[command_buffer])
|
|
|
|
.signal_semaphores(signal_semaphores)
|
|
|
|
.wait_dst_stage_mask(wait_mask)
|
|
|
|
.build();
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
device
|
|
|
|
.queue_submit(submit_queue, &[submit_info], submit_fence)
|
2016-12-26 11:58:44 +11:00
|
|
|
.expect("queue submit failed.");
|
2017-12-13 00:25:10 +11:00
|
|
|
device
|
|
|
|
.wait_for_fences(&[submit_fence], true, std::u64::MAX)
|
2016-12-26 11:58:44 +11:00
|
|
|
.expect("Wait for fence failed.");
|
2016-12-28 19:24:24 +11:00
|
|
|
device.destroy_fence(submit_fence, None);
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-07 14:45:52 +10:00
|
|
|
#[cfg(all(unix, not(target_os = "android"), not(target_os = "macos")))]
|
2017-12-13 00:25:10 +11:00
|
|
|
unsafe fn create_surface<E: EntryV1_0, I: InstanceV1_0>(
|
|
|
|
entry: &E,
|
|
|
|
instance: &I,
|
|
|
|
window: &winit::Window,
|
|
|
|
) -> Result<vk::SurfaceKHR, vk::Result> {
|
2016-12-26 11:58:44 +11:00
|
|
|
use winit::os::unix::WindowExt;
|
2016-12-26 00:38:26 +11:00
|
|
|
let x11_display = window.get_xlib_display().unwrap();
|
|
|
|
let x11_window = window.get_xlib_window().unwrap();
|
2018-12-07 01:58:12 +11:00
|
|
|
let x11_create_info = vk::XlibSurfaceCreateInfoKHR::builder()
|
|
|
|
.window(x11_window as vk::Window)
|
|
|
|
.dpy(x11_display as *mut vk::Display)
|
|
|
|
.build();
|
2018-11-18 05:05:28 +11:00
|
|
|
let xlib_surface_loader = XlibSurface::new(entry, instance);
|
2016-12-28 21:04:50 +11:00
|
|
|
xlib_surface_loader.create_xlib_surface_khr(&x11_create_info, None)
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
|
|
|
|
2018-07-07 14:45:52 +10:00
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
unsafe fn create_surface<E: EntryV1_0, I: InstanceV1_0>(
|
|
|
|
entry: &E,
|
|
|
|
instance: &I,
|
|
|
|
window: &winit::Window,
|
|
|
|
) -> Result<vk::SurfaceKHR, vk::Result> {
|
|
|
|
use winit::os::macos::WindowExt;
|
|
|
|
|
|
|
|
let wnd: cocoa_id = mem::transmute(window.get_nswindow());
|
|
|
|
|
|
|
|
let layer = CoreAnimationLayer::new();
|
|
|
|
|
|
|
|
layer.set_edge_antialiasing_mask(0);
|
|
|
|
layer.set_presents_with_transaction(false);
|
|
|
|
layer.remove_all_animations();
|
|
|
|
|
|
|
|
let view = wnd.contentView();
|
|
|
|
|
|
|
|
layer.set_contents_scale(view.backingScaleFactor());
|
|
|
|
view.setLayer(mem::transmute(layer.as_ref()));
|
|
|
|
view.setWantsLayer(YES);
|
|
|
|
|
|
|
|
let create_info = vk::MacOSSurfaceCreateInfoMVK {
|
2018-11-16 23:39:14 +11:00
|
|
|
s_type: vk::StructureType::MACOS_SURFACE_CREATE_INFO_M,
|
2018-07-07 14:45:52 +10:00
|
|
|
p_next: ptr::null(),
|
|
|
|
flags: Default::default(),
|
2018-11-18 05:05:28 +11:00
|
|
|
p_view: window.get_nsview() as *const c_void,
|
2018-07-07 14:45:52 +10:00
|
|
|
};
|
|
|
|
|
2018-11-18 05:05:28 +11:00
|
|
|
let macos_surface_loader = MacOSSurface::new(entry, instance);
|
2018-11-16 23:39:14 +11:00
|
|
|
macos_surface_loader.create_mac_os_surface_mvk(&create_info, None)
|
2018-07-07 14:45:52 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "windows")]
|
2017-12-13 00:25:10 +11:00
|
|
|
unsafe fn create_surface<E: EntryV1_0, I: InstanceV1_0>(
|
|
|
|
entry: &E,
|
|
|
|
instance: &I,
|
|
|
|
window: &winit::Window,
|
|
|
|
) -> Result<vk::SurfaceKHR, vk::Result> {
|
2018-03-03 19:02:43 +11:00
|
|
|
use winapi::shared::windef::HWND;
|
2018-08-29 21:44:55 +10:00
|
|
|
use winapi::um::libloaderapi::GetModuleHandleW;
|
2016-12-26 11:58:44 +11:00
|
|
|
use winit::os::windows::WindowExt;
|
2018-03-03 19:02:43 +11:00
|
|
|
|
|
|
|
let hwnd = window.get_hwnd() as HWND;
|
2018-08-29 21:44:55 +10:00
|
|
|
let hinstance = GetModuleHandleW(ptr::null()) as *const c_void;
|
2016-12-26 11:58:44 +11:00
|
|
|
let win32_create_info = vk::Win32SurfaceCreateInfoKHR {
|
2018-07-31 22:51:37 +10:00
|
|
|
s_type: vk::StructureType::WIN32_SURFACE_CREATE_INFO_KHR,
|
2016-12-26 11:58:44 +11:00
|
|
|
p_next: ptr::null(),
|
|
|
|
flags: Default::default(),
|
|
|
|
hinstance: hinstance,
|
2018-08-29 03:01:16 +10:00
|
|
|
hwnd: hwnd as *const c_void,
|
2016-12-26 11:58:44 +11:00
|
|
|
};
|
2018-11-18 05:05:28 +11:00
|
|
|
let win32_surface_loader = Win32Surface::new(entry, instance);
|
2016-12-28 21:13:36 +11:00
|
|
|
win32_surface_loader.create_win32_surface_khr(&win32_create_info, None)
|
2016-12-26 11:58:44 +11:00
|
|
|
}
|
|
|
|
|
2018-07-07 14:45:52 +10:00
|
|
|
#[cfg(all(unix, not(target_os = "android"), not(target_os = "macos")))]
|
2016-12-28 14:19:03 +11:00
|
|
|
fn extension_names() -> Vec<*const i8> {
|
2017-12-13 00:25:10 +11:00
|
|
|
vec![
|
|
|
|
Surface::name().as_ptr(),
|
|
|
|
XlibSurface::name().as_ptr(),
|
|
|
|
DebugReport::name().as_ptr(),
|
|
|
|
]
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
|
|
|
|
2018-07-07 14:45:52 +10:00
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
fn extension_names() -> Vec<*const i8> {
|
|
|
|
vec![
|
|
|
|
Surface::name().as_ptr(),
|
|
|
|
MacOSSurface::name().as_ptr(),
|
|
|
|
DebugReport::name().as_ptr(),
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-12-26 00:38:26 +11:00
|
|
|
#[cfg(all(windows))]
|
2016-12-28 14:19:03 +11:00
|
|
|
fn extension_names() -> Vec<*const i8> {
|
2017-12-13 00:25:10 +11:00
|
|
|
vec![
|
|
|
|
Surface::name().as_ptr(),
|
|
|
|
Win32Surface::name().as_ptr(),
|
|
|
|
DebugReport::name().as_ptr(),
|
|
|
|
]
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
unsafe extern "system" fn vulkan_debug_callback(
|
|
|
|
_: vk::DebugReportFlagsEXT,
|
|
|
|
_: vk::DebugReportObjectTypeEXT,
|
2018-08-29 03:01:16 +10:00
|
|
|
_: u64,
|
|
|
|
_: usize,
|
|
|
|
_: i32,
|
|
|
|
_: *const c_char,
|
|
|
|
p_message: *const c_char,
|
|
|
|
_: *mut c_void,
|
2017-12-13 00:25:10 +11:00
|
|
|
) -> u32 {
|
2016-12-26 00:38:26 +11:00
|
|
|
println!("{:?}", CStr::from_ptr(p_message));
|
2018-11-12 23:12:38 +11:00
|
|
|
vk::FALSE
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
pub fn find_memorytype_index(
|
|
|
|
memory_req: &vk::MemoryRequirements,
|
|
|
|
memory_prop: &vk::PhysicalDeviceMemoryProperties,
|
|
|
|
flags: vk::MemoryPropertyFlags,
|
|
|
|
) -> Option<u32> {
|
2016-12-29 16:02:37 +11:00
|
|
|
// Try to find an exactly matching memory flag
|
|
|
|
let best_suitable_index =
|
2017-12-13 00:25:10 +11:00
|
|
|
find_memorytype_index_f(memory_req, memory_prop, flags, |property_flags, flags| {
|
|
|
|
property_flags == flags
|
|
|
|
});
|
2016-12-29 16:02:37 +11:00
|
|
|
if best_suitable_index.is_some() {
|
|
|
|
return best_suitable_index;
|
|
|
|
}
|
|
|
|
// Otherwise find a memory flag that works
|
2017-12-13 00:25:10 +11:00
|
|
|
find_memorytype_index_f(memory_req, memory_prop, flags, |property_flags, flags| {
|
|
|
|
property_flags & flags == flags
|
|
|
|
})
|
2016-12-29 16:02:37 +11:00
|
|
|
}
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
pub fn find_memorytype_index_f<F: Fn(vk::MemoryPropertyFlags, vk::MemoryPropertyFlags) -> bool>(
|
|
|
|
memory_req: &vk::MemoryRequirements,
|
|
|
|
memory_prop: &vk::PhysicalDeviceMemoryProperties,
|
|
|
|
flags: vk::MemoryPropertyFlags,
|
|
|
|
f: F,
|
|
|
|
) -> Option<u32> {
|
2016-12-26 00:38:26 +11:00
|
|
|
let mut memory_type_bits = memory_req.memory_type_bits;
|
|
|
|
for (index, ref memory_type) in memory_prop.memory_types.iter().enumerate() {
|
2016-12-29 16:02:37 +11:00
|
|
|
if memory_type_bits & 1 == 1 {
|
|
|
|
if f(memory_type.property_flags, flags) {
|
|
|
|
return Some(index as u32);
|
|
|
|
}
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
|
|
|
memory_type_bits = memory_type_bits >> 1;
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
2016-12-29 16:02:37 +11:00
|
|
|
|
2016-12-26 00:38:26 +11:00
|
|
|
pub struct ExampleBase {
|
2018-11-11 20:41:58 +11:00
|
|
|
pub entry: Entry,
|
|
|
|
pub instance: Instance,
|
|
|
|
pub device: Device,
|
2016-12-26 00:38:26 +11:00
|
|
|
pub surface_loader: Surface,
|
|
|
|
pub swapchain_loader: Swapchain,
|
|
|
|
pub debug_report_loader: DebugReport,
|
|
|
|
pub window: winit::Window,
|
2017-12-13 00:25:10 +11:00
|
|
|
pub events_loop: RefCell<winit::EventsLoop>,
|
2016-12-26 00:38:26 +11:00
|
|
|
pub debug_call_back: vk::DebugReportCallbackEXT,
|
|
|
|
|
|
|
|
pub pdevice: vk::PhysicalDevice,
|
|
|
|
pub device_memory_properties: vk::PhysicalDeviceMemoryProperties,
|
|
|
|
pub queue_family_index: u32,
|
|
|
|
pub present_queue: vk::Queue,
|
|
|
|
|
|
|
|
pub surface: vk::SurfaceKHR,
|
|
|
|
pub surface_format: vk::SurfaceFormatKHR,
|
|
|
|
pub surface_resolution: vk::Extent2D,
|
|
|
|
|
|
|
|
pub swapchain: vk::SwapchainKHR,
|
|
|
|
pub present_images: Vec<vk::Image>,
|
|
|
|
pub present_image_views: Vec<vk::ImageView>,
|
|
|
|
|
|
|
|
pub pool: vk::CommandPool,
|
|
|
|
pub draw_command_buffer: vk::CommandBuffer,
|
|
|
|
pub setup_command_buffer: vk::CommandBuffer,
|
|
|
|
|
|
|
|
pub depth_image: vk::Image,
|
|
|
|
pub depth_image_view: vk::ImageView,
|
|
|
|
pub depth_image_memory: vk::DeviceMemory,
|
|
|
|
|
|
|
|
pub present_complete_semaphore: vk::Semaphore,
|
|
|
|
pub rendering_complete_semaphore: vk::Semaphore,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ExampleBase {
|
|
|
|
pub fn render_loop<F: Fn()>(&self, f: F) {
|
2017-12-13 00:25:10 +11:00
|
|
|
use winit::*;
|
|
|
|
self.events_loop.borrow_mut().run_forever(|event| {
|
2016-12-26 00:38:26 +11:00
|
|
|
f();
|
2017-12-13 00:25:10 +11:00
|
|
|
match event {
|
|
|
|
Event::WindowEvent { event, .. } => match event {
|
|
|
|
WindowEvent::KeyboardInput { input, .. } => {
|
|
|
|
if let Some(VirtualKeyCode::Escape) = input.virtual_keycode {
|
|
|
|
ControlFlow::Break
|
|
|
|
} else {
|
|
|
|
ControlFlow::Continue
|
|
|
|
}
|
|
|
|
}
|
2018-08-25 18:06:30 +10:00
|
|
|
WindowEvent::CloseRequested => winit::ControlFlow::Break,
|
2017-12-13 00:25:10 +11:00
|
|
|
_ => ControlFlow::Continue,
|
|
|
|
},
|
|
|
|
_ => ControlFlow::Continue,
|
|
|
|
}
|
|
|
|
});
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
2018-03-03 18:59:28 +11:00
|
|
|
|
2016-12-26 00:38:26 +11:00
|
|
|
pub fn new(window_width: u32, window_height: u32) -> Self {
|
|
|
|
unsafe {
|
2017-12-13 00:25:10 +11:00
|
|
|
let events_loop = winit::EventsLoop::new();
|
2016-12-26 00:38:26 +11:00
|
|
|
let window = winit::WindowBuilder::new()
|
2017-01-05 18:09:23 +11:00
|
|
|
.with_title("Ash - Example")
|
2018-08-03 05:22:46 +10:00
|
|
|
.with_dimensions(winit::dpi::LogicalSize::new(
|
|
|
|
window_width as f64,
|
|
|
|
window_height as f64,
|
|
|
|
)).build(&events_loop)
|
2016-12-26 00:38:26 +11:00
|
|
|
.unwrap();
|
2017-01-01 18:56:38 +11:00
|
|
|
let entry = Entry::new().unwrap();
|
2016-12-26 00:38:26 +11:00
|
|
|
let app_name = CString::new("VulkanTriangle").unwrap();
|
|
|
|
|
|
|
|
let layer_names = [CString::new("VK_LAYER_LUNARG_standard_validation").unwrap()];
|
2017-12-13 00:25:10 +11:00
|
|
|
let layers_names_raw: Vec<*const i8> = layer_names
|
|
|
|
.iter()
|
2016-12-26 00:38:26 +11:00
|
|
|
.map(|raw_name| raw_name.as_ptr())
|
|
|
|
.collect();
|
2018-07-07 14:45:52 +10:00
|
|
|
|
2016-12-28 14:19:03 +11:00
|
|
|
let extension_names_raw = extension_names();
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let appinfo = vk::ApplicationInfo::builder()
|
2018-12-07 06:18:37 +11:00
|
|
|
.application_name(&app_name)
|
2018-12-07 01:58:12 +11:00
|
|
|
.application_version(0)
|
|
|
|
.engine_name(&app_name)
|
|
|
|
.engine_version(0)
|
2018-12-07 06:18:37 +11:00
|
|
|
.api_version(vk_make_version!(1, 0, 36))
|
2018-12-07 01:58:12 +11:00
|
|
|
.build();
|
|
|
|
|
|
|
|
let create_info = vk::InstanceCreateInfo::builder()
|
|
|
|
.application_info(&appinfo)
|
|
|
|
.enabled_layer_names(&layers_names_raw)
|
2018-12-07 06:18:37 +11:00
|
|
|
.enabled_extension_names(&extension_names_raw)
|
2018-12-07 01:58:12 +11:00
|
|
|
.build();
|
|
|
|
|
2018-11-11 20:41:58 +11:00
|
|
|
let instance: Instance = entry
|
2017-12-13 00:25:10 +11:00
|
|
|
.create_instance(&create_info, None)
|
2016-12-26 00:38:26 +11:00
|
|
|
.expect("Instance creation error");
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let debug_info = vk::DebugReportCallbackCreateInfoEXT::builder()
|
|
|
|
.pfn_callback(Some(vulkan_debug_callback))
|
|
|
|
.flags(
|
|
|
|
vk::DebugReportFlagsEXT::ERROR
|
|
|
|
| vk::DebugReportFlagsEXT::WARNING
|
2018-12-07 06:18:37 +11:00
|
|
|
| vk::DebugReportFlagsEXT::PERFORMANCE_WARNING,
|
|
|
|
).build();
|
2018-12-07 01:58:12 +11:00
|
|
|
|
2018-11-18 05:05:28 +11:00
|
|
|
let debug_report_loader = DebugReport::new(&entry, &instance);
|
2017-12-13 00:25:10 +11:00
|
|
|
let debug_call_back = debug_report_loader
|
|
|
|
.create_debug_report_callback_ext(&debug_info, None)
|
|
|
|
.unwrap();
|
2017-01-05 19:03:37 +11:00
|
|
|
let surface = create_surface(&entry, &instance, &window).unwrap();
|
2017-12-13 00:25:10 +11:00
|
|
|
let pdevices = instance
|
|
|
|
.enumerate_physical_devices()
|
|
|
|
.expect("Physical device error");
|
2018-11-18 05:05:28 +11:00
|
|
|
let surface_loader = Surface::new(&entry, &instance);
|
2017-12-13 00:25:10 +11:00
|
|
|
let (pdevice, queue_family_index) = pdevices
|
|
|
|
.iter()
|
2016-12-26 00:38:26 +11:00
|
|
|
.map(|pdevice| {
|
2017-12-13 00:25:10 +11:00
|
|
|
instance
|
|
|
|
.get_physical_device_queue_family_properties(*pdevice)
|
2016-12-26 00:38:26 +11:00
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.filter_map(|(index, ref info)| {
|
2018-07-31 22:51:45 +10:00
|
|
|
let supports_graphic_and_surface =
|
2018-11-18 05:05:28 +11:00
|
|
|
info.queue_flags.contains(vk::QueueFlags::GRAPHICS)
|
|
|
|
&& surface_loader.get_physical_device_surface_support_khr(
|
2018-07-31 22:51:45 +10:00
|
|
|
*pdevice,
|
|
|
|
index as u32,
|
|
|
|
surface,
|
|
|
|
);
|
2016-12-26 00:38:26 +11:00
|
|
|
match supports_graphic_and_surface {
|
|
|
|
true => Some((*pdevice, index)),
|
|
|
|
_ => None,
|
|
|
|
}
|
2018-08-03 05:22:46 +10:00
|
|
|
}).nth(0)
|
|
|
|
}).filter_map(|v| v)
|
2016-12-26 00:38:26 +11:00
|
|
|
.nth(0)
|
|
|
|
.expect("Couldn't find suitable device.");
|
|
|
|
let queue_family_index = queue_family_index as u32;
|
2016-12-28 14:19:03 +11:00
|
|
|
let device_extension_names_raw = [Swapchain::name().as_ptr()];
|
2017-12-13 00:25:10 +11:00
|
|
|
let features = vk::PhysicalDeviceFeatures {
|
|
|
|
shader_clip_distance: 1,
|
|
|
|
..Default::default()
|
|
|
|
};
|
2016-12-26 00:38:26 +11:00
|
|
|
let priorities = [1.0];
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let queue_info = vk::DeviceQueueCreateInfo::builder()
|
2018-12-07 06:18:37 +11:00
|
|
|
.queue_family_index(queue_family_index as u32)
|
2018-12-07 01:58:12 +11:00
|
|
|
.queue_priorities(&priorities)
|
|
|
|
.build();
|
|
|
|
|
|
|
|
let device_create_info = vk::DeviceCreateInfo::builder()
|
|
|
|
.queue_create_infos(&[queue_info])
|
|
|
|
.enabled_extension_names(&device_extension_names_raw)
|
|
|
|
.enabled_features(&features)
|
|
|
|
.build();
|
|
|
|
|
2018-11-11 20:41:58 +11:00
|
|
|
let device: Device = instance
|
2017-12-13 00:25:10 +11:00
|
|
|
.create_device(pdevice, &device_create_info, None)
|
2016-12-26 00:38:26 +11:00
|
|
|
.unwrap();
|
|
|
|
let present_queue = device.get_device_queue(queue_family_index as u32, 0);
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
let surface_formats = surface_loader
|
|
|
|
.get_physical_device_surface_formats_khr(pdevice, surface)
|
|
|
|
.unwrap();
|
|
|
|
let surface_format = surface_formats
|
|
|
|
.iter()
|
|
|
|
.map(|sfmt| match sfmt.format {
|
2018-07-31 20:45:29 +10:00
|
|
|
vk::Format::UNDEFINED => vk::SurfaceFormatKHR {
|
|
|
|
format: vk::Format::B8G8R8_UNORM,
|
2017-12-13 00:25:10 +11:00
|
|
|
color_space: sfmt.color_space,
|
|
|
|
},
|
|
|
|
_ => sfmt.clone(),
|
2018-08-03 05:22:46 +10:00
|
|
|
}).nth(0)
|
2016-12-26 00:38:26 +11:00
|
|
|
.expect("Unable to find suitable surface format.");
|
2017-12-13 00:25:10 +11:00
|
|
|
let surface_capabilities = surface_loader
|
|
|
|
.get_physical_device_surface_capabilities_khr(pdevice, surface)
|
|
|
|
.unwrap();
|
2017-01-06 18:47:39 +11:00
|
|
|
let mut desired_image_count = surface_capabilities.min_image_count + 1;
|
2017-12-13 00:25:10 +11:00
|
|
|
if surface_capabilities.max_image_count > 0
|
|
|
|
&& desired_image_count > surface_capabilities.max_image_count
|
|
|
|
{
|
2017-01-06 18:47:39 +11:00
|
|
|
desired_image_count = surface_capabilities.max_image_count;
|
|
|
|
}
|
2016-12-26 00:38:26 +11:00
|
|
|
let surface_resolution = match surface_capabilities.current_extent.width {
|
2017-12-13 00:25:10 +11:00
|
|
|
std::u32::MAX => vk::Extent2D {
|
|
|
|
width: window_width,
|
|
|
|
height: window_height,
|
|
|
|
},
|
2016-12-26 00:38:26 +11:00
|
|
|
_ => surface_capabilities.current_extent,
|
|
|
|
};
|
2017-12-13 00:25:10 +11:00
|
|
|
let pre_transform = if surface_capabilities
|
|
|
|
.supported_transforms
|
2018-09-17 04:59:55 +10:00
|
|
|
.contains(vk::SurfaceTransformFlagsKHR::IDENTITY)
|
2017-12-13 00:25:10 +11:00
|
|
|
{
|
2018-08-01 16:51:50 +10:00
|
|
|
vk::SurfaceTransformFlagsKHR::IDENTITY
|
2016-12-26 00:38:26 +11:00
|
|
|
} else {
|
|
|
|
surface_capabilities.current_transform
|
|
|
|
};
|
2017-12-13 00:25:10 +11:00
|
|
|
let present_modes = surface_loader
|
|
|
|
.get_physical_device_surface_present_modes_khr(pdevice, surface)
|
|
|
|
.unwrap();
|
|
|
|
let present_mode = present_modes
|
|
|
|
.iter()
|
2016-12-26 00:38:26 +11:00
|
|
|
.cloned()
|
2018-08-01 16:51:50 +10:00
|
|
|
.find(|&mode| mode == vk::PresentModeKHR::MAILBOX)
|
|
|
|
.unwrap_or(vk::PresentModeKHR::FIFO);
|
2018-11-18 05:05:28 +11:00
|
|
|
let swapchain_loader = Swapchain::new(&instance, &device);
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let swapchain_create_info = vk::SwapchainCreateInfoKHR::builder()
|
|
|
|
.surface(surface)
|
|
|
|
.min_image_count(desired_image_count)
|
|
|
|
.image_color_space(surface_format.color_space)
|
|
|
|
.image_format(surface_format.format)
|
|
|
|
.image_extent(surface_resolution.clone())
|
|
|
|
.image_usage(vk::ImageUsageFlags::COLOR_ATTACHMENT)
|
|
|
|
.pre_transform(pre_transform)
|
|
|
|
.composite_alpha(vk::CompositeAlphaFlagsKHR::OPAQUE)
|
|
|
|
.present_mode(present_mode)
|
2018-12-07 06:18:37 +11:00
|
|
|
// .clipped(true)
|
2018-12-07 01:58:12 +11:00
|
|
|
.image_array_layers(1)
|
|
|
|
.build();
|
2017-12-13 00:25:10 +11:00
|
|
|
let swapchain = swapchain_loader
|
|
|
|
.create_swapchain_khr(&swapchain_create_info, None)
|
2016-12-29 16:02:37 +11:00
|
|
|
.unwrap();
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let pool_create_info = vk::CommandPoolCreateInfo::builder()
|
|
|
|
.queue_family_index(queue_family_index)
|
|
|
|
.flags(vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER)
|
|
|
|
.build();
|
|
|
|
|
2016-12-28 19:24:24 +11:00
|
|
|
let pool = device.create_command_pool(&pool_create_info, None).unwrap();
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let command_buffer_allocate_info = vk::CommandBufferAllocateInfo::builder()
|
|
|
|
.command_buffer_count(2)
|
|
|
|
.command_pool(pool)
|
|
|
|
.level(vk::CommandBufferLevel::PRIMARY)
|
|
|
|
.build();
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
let command_buffers = device
|
|
|
|
.allocate_command_buffers(&command_buffer_allocate_info)
|
2016-12-26 00:38:26 +11:00
|
|
|
.unwrap();
|
|
|
|
let setup_command_buffer = command_buffers[0];
|
|
|
|
let draw_command_buffer = command_buffers[1];
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
let present_images = swapchain_loader
|
|
|
|
.get_swapchain_images_khr(swapchain)
|
|
|
|
.unwrap();
|
|
|
|
let present_image_views: Vec<vk::ImageView> = present_images
|
|
|
|
.iter()
|
2016-12-26 00:38:26 +11:00
|
|
|
.map(|&image| {
|
2018-12-07 01:58:12 +11:00
|
|
|
let create_view_info = vk::ImageViewCreateInfo::builder()
|
|
|
|
.subresource_range(
|
|
|
|
vk::ImageSubresourceRange::builder()
|
|
|
|
.aspect_mask(vk::ImageAspectFlags::COLOR)
|
|
|
|
.level_count(1)
|
|
|
|
.layer_count(1)
|
2018-12-07 06:18:37 +11:00
|
|
|
.build(),
|
|
|
|
).image(image)
|
2018-12-07 01:58:12 +11:00
|
|
|
.format(surface_format.format)
|
|
|
|
.view_type(vk::ImageViewType::TYPE_2D)
|
|
|
|
.build();
|
|
|
|
|
2016-12-28 19:24:24 +11:00
|
|
|
device.create_image_view(&create_view_info, None).unwrap()
|
2018-08-03 05:22:46 +10:00
|
|
|
}).collect();
|
2016-12-26 00:38:26 +11:00
|
|
|
let device_memory_properties = instance.get_physical_device_memory_properties(pdevice);
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let depth_image_create_info = vk::ImageCreateInfo::builder()
|
|
|
|
.image_type(vk::ImageType::TYPE_2D)
|
|
|
|
.format(vk::Format::D16_UNORM)
|
|
|
|
.extent(vk::Extent3D {
|
2016-12-26 00:38:26 +11:00
|
|
|
width: surface_resolution.width,
|
|
|
|
height: surface_resolution.height,
|
2018-12-07 06:18:37 +11:00
|
|
|
depth: 1,
|
|
|
|
}).mip_levels(1)
|
2018-12-07 01:58:12 +11:00
|
|
|
.array_layers(1)
|
|
|
|
.samples(vk::SampleCountFlags::TYPE_1)
|
|
|
|
.usage(vk::ImageUsageFlags::DEPTH_STENCIL_ATTACHMENT)
|
|
|
|
.build();
|
|
|
|
|
2016-12-28 19:24:24 +11:00
|
|
|
let depth_image = device.create_image(&depth_image_create_info, None).unwrap();
|
2016-12-26 00:38:26 +11:00
|
|
|
let depth_image_memory_req = device.get_image_memory_requirements(depth_image);
|
2018-08-03 05:22:46 +10:00
|
|
|
let depth_image_memory_index = find_memorytype_index(
|
|
|
|
&depth_image_memory_req,
|
|
|
|
&device_memory_properties,
|
|
|
|
vk::MemoryPropertyFlags::DEVICE_LOCAL,
|
|
|
|
).expect("Unable to find suitable memory index for depth image.");
|
2016-12-26 00:38:26 +11:00
|
|
|
|
2018-12-07 01:58:12 +11:00
|
|
|
let depth_image_allocate_info = vk::MemoryAllocateInfo::builder()
|
|
|
|
.allocation_size(depth_image_memory_req.size)
|
|
|
|
.memory_type_index(depth_image_memory_index)
|
|
|
|
.build();
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
let depth_image_memory = device
|
|
|
|
.allocate_memory(&depth_image_allocate_info, None)
|
2016-12-28 19:24:24 +11:00
|
|
|
.unwrap();
|
2018-12-07 01:58:12 +11:00
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
device
|
|
|
|
.bind_image_memory(depth_image, depth_image_memory, 0)
|
2016-12-26 00:38:26 +11:00
|
|
|
.expect("Unable to bind depth image memory");
|
2018-12-07 01:58:12 +11:00
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
record_submit_commandbuffer(
|
|
|
|
&device,
|
|
|
|
setup_command_buffer,
|
|
|
|
present_queue,
|
2018-12-07 01:58:12 +11:00
|
|
|
&[],
|
2017-12-13 00:25:10 +11:00
|
|
|
&[],
|
|
|
|
&[],
|
|
|
|
|device, setup_command_buffer| {
|
2018-12-07 01:58:12 +11:00
|
|
|
let layout_transition_barrier = vk::ImageMemoryBarrier::builder()
|
|
|
|
.image(depth_image)
|
|
|
|
.dst_access_mask(
|
|
|
|
vk::AccessFlags::DEPTH_STENCIL_ATTACHMENT_READ
|
2018-12-07 06:18:37 +11:00
|
|
|
| vk::AccessFlags::DEPTH_STENCIL_ATTACHMENT_WRITE,
|
|
|
|
).new_layout(vk::ImageLayout::DEPTH_STENCIL_ATTACHMENT_OPTIMAL)
|
2018-12-07 01:58:12 +11:00
|
|
|
.old_layout(vk::ImageLayout::UNDEFINED)
|
|
|
|
.subresource_range(
|
|
|
|
vk::ImageSubresourceRange::builder()
|
|
|
|
.aspect_mask(vk::ImageAspectFlags::DEPTH)
|
|
|
|
.layer_count(1)
|
|
|
|
.level_count(1)
|
2018-12-07 06:18:37 +11:00
|
|
|
.build(),
|
|
|
|
).build();
|
2018-12-07 01:58:12 +11:00
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
device.cmd_pipeline_barrier(
|
|
|
|
setup_command_buffer,
|
2018-07-31 20:45:29 +10:00
|
|
|
vk::PipelineStageFlags::BOTTOM_OF_PIPE,
|
|
|
|
vk::PipelineStageFlags::LATE_FRAGMENT_TESTS,
|
2017-12-13 00:25:10 +11:00
|
|
|
vk::DependencyFlags::empty(),
|
|
|
|
&[],
|
|
|
|
&[],
|
|
|
|
&[layout_transition_barrier],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let depth_image_view_info = vk::ImageViewCreateInfo::builder()
|
|
|
|
.subresource_range(
|
|
|
|
vk::ImageSubresourceRange::builder()
|
|
|
|
.aspect_mask(vk::ImageAspectFlags::DEPTH)
|
|
|
|
.level_count(1)
|
|
|
|
.layer_count(1)
|
2018-12-07 06:18:37 +11:00
|
|
|
.build(),
|
|
|
|
).image(depth_image)
|
2018-12-07 01:58:12 +11:00
|
|
|
.format(depth_image_create_info.format)
|
|
|
|
.view_type(vk::ImageViewType::TYPE_2D)
|
|
|
|
.build();
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
let depth_image_view = device
|
|
|
|
.create_image_view(&depth_image_view_info, None)
|
|
|
|
.unwrap();
|
2018-12-07 01:58:12 +11:00
|
|
|
|
|
|
|
let semaphore_create_info = vk::SemaphoreCreateInfo::default();
|
|
|
|
|
2017-12-13 00:25:10 +11:00
|
|
|
let present_complete_semaphore = device
|
|
|
|
.create_semaphore(&semaphore_create_info, None)
|
2016-12-26 00:38:26 +11:00
|
|
|
.unwrap();
|
2017-12-13 00:25:10 +11:00
|
|
|
let rendering_complete_semaphore = device
|
|
|
|
.create_semaphore(&semaphore_create_info, None)
|
2016-12-26 00:38:26 +11:00
|
|
|
.unwrap();
|
|
|
|
ExampleBase {
|
2017-12-13 00:25:10 +11:00
|
|
|
events_loop: RefCell::new(events_loop),
|
2016-12-26 00:38:26 +11:00
|
|
|
entry: entry,
|
|
|
|
instance: instance,
|
|
|
|
device: device,
|
|
|
|
queue_family_index: queue_family_index,
|
|
|
|
pdevice: pdevice,
|
|
|
|
device_memory_properties: device_memory_properties,
|
|
|
|
window: window,
|
|
|
|
surface_loader: surface_loader,
|
|
|
|
surface_format: surface_format,
|
|
|
|
present_queue: present_queue,
|
|
|
|
surface_resolution: surface_resolution,
|
|
|
|
swapchain_loader: swapchain_loader,
|
|
|
|
swapchain: swapchain,
|
|
|
|
present_images: present_images,
|
|
|
|
present_image_views: present_image_views,
|
|
|
|
pool: pool,
|
|
|
|
draw_command_buffer: draw_command_buffer,
|
|
|
|
setup_command_buffer: setup_command_buffer,
|
|
|
|
depth_image: depth_image,
|
|
|
|
depth_image_view: depth_image_view,
|
|
|
|
present_complete_semaphore: present_complete_semaphore,
|
|
|
|
rendering_complete_semaphore: rendering_complete_semaphore,
|
|
|
|
surface: surface,
|
|
|
|
debug_call_back: debug_call_back,
|
|
|
|
debug_report_loader: debug_report_loader,
|
|
|
|
depth_image_memory: depth_image_memory,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-01-01 18:09:51 +11:00
|
|
|
|
2016-12-26 00:38:26 +11:00
|
|
|
impl Drop for ExampleBase {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
self.device.device_wait_idle().unwrap();
|
2017-12-13 00:25:10 +11:00
|
|
|
self.device
|
|
|
|
.destroy_semaphore(self.present_complete_semaphore, None);
|
|
|
|
self.device
|
|
|
|
.destroy_semaphore(self.rendering_complete_semaphore, None);
|
2016-12-29 16:02:37 +11:00
|
|
|
self.device.free_memory(self.depth_image_memory, None);
|
2016-12-28 19:24:24 +11:00
|
|
|
self.device.destroy_image_view(self.depth_image_view, None);
|
|
|
|
self.device.destroy_image(self.depth_image, None);
|
2016-12-26 00:38:26 +11:00
|
|
|
for &image_view in self.present_image_views.iter() {
|
2016-12-28 19:24:24 +11:00
|
|
|
self.device.destroy_image_view(image_view, None);
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
2016-12-28 19:24:24 +11:00
|
|
|
self.device.destroy_command_pool(self.pool, None);
|
2017-12-13 00:25:10 +11:00
|
|
|
self.swapchain_loader
|
|
|
|
.destroy_swapchain_khr(self.swapchain, None);
|
2016-12-28 19:24:24 +11:00
|
|
|
self.device.destroy_device(None);
|
2016-12-28 21:04:50 +11:00
|
|
|
self.surface_loader.destroy_surface_khr(self.surface, None);
|
2017-12-13 00:25:10 +11:00
|
|
|
self.debug_report_loader
|
|
|
|
.destroy_debug_report_callback_ext(self.debug_call_back, None);
|
2016-12-28 21:04:50 +11:00
|
|
|
self.instance.destroy_instance(None);
|
2016-12-26 00:38:26 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|