2016-08-14 09:13:39 +10:00
|
|
|
#![allow(dead_code)]
|
2016-12-10 05:25:48 +11:00
|
|
|
use prelude::*;
|
2016-08-14 09:13:39 +10:00
|
|
|
use std::ptr;
|
|
|
|
use std::mem;
|
|
|
|
use std::os::raw::*;
|
2016-12-04 10:56:58 +11:00
|
|
|
use std::path::Path;
|
2016-12-10 06:15:59 +11:00
|
|
|
use vk;
|
2016-12-08 10:01:16 +11:00
|
|
|
use device::Device;
|
2016-12-04 10:56:58 +11:00
|
|
|
use shared_library::dynamic_library::DynamicLibrary;
|
2016-12-08 10:01:16 +11:00
|
|
|
|
2016-12-10 05:25:48 +11:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum DeviceError {
|
|
|
|
LoadError(String),
|
|
|
|
VkError(vk::Result),
|
|
|
|
}
|
2016-12-04 10:56:58 +11:00
|
|
|
|
2016-12-08 10:01:16 +11:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Instance<'r> {
|
|
|
|
handle: vk::Instance,
|
|
|
|
instance_fn: vk::InstanceFn,
|
2016-12-09 09:09:24 +11:00
|
|
|
_lifetime: ::std::marker::PhantomData<&'r ()>,
|
2016-12-04 10:56:58 +11:00
|
|
|
}
|
2016-12-10 05:25:48 +11:00
|
|
|
|
2016-12-04 10:56:58 +11:00
|
|
|
impl<'r> Instance<'r> {
|
2016-12-09 11:55:29 +11:00
|
|
|
pub unsafe fn from_raw(handle: vk::Instance, instance_fn: vk::InstanceFn) -> Self {
|
|
|
|
Instance {
|
|
|
|
handle: handle,
|
|
|
|
instance_fn: instance_fn,
|
|
|
|
_lifetime: ::std::marker::PhantomData,
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 11:58:24 +11:00
|
|
|
|
2016-12-10 05:25:48 +11:00
|
|
|
pub fn create_device(&self,
|
|
|
|
physical_device: vk::PhysicalDevice,
|
|
|
|
create_info: &vk::DeviceCreateInfo)
|
|
|
|
-> Result<Device, DeviceError> {
|
|
|
|
unsafe {
|
|
|
|
let mut device = mem::uninitialized();
|
|
|
|
let err_code = self.instance_fn
|
|
|
|
.create_device(physical_device, create_info, ptr::null(), &mut device);
|
|
|
|
if err_code != vk::Result::Success {
|
|
|
|
return Err(DeviceError::VkError(err_code));
|
|
|
|
}
|
|
|
|
let device_fn = vk::DeviceFn::load(|name| unsafe {
|
|
|
|
mem::transmute(self.instance_fn.get_device_proc_addr(device, name.as_ptr()))
|
|
|
|
}).map_err(|err| DeviceError::LoadError(err))?;
|
|
|
|
Ok(Device::from_raw(device, device_fn))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-04 10:56:58 +11:00
|
|
|
pub fn destroy_instance(&self) {
|
|
|
|
unsafe {
|
|
|
|
self.instance_fn.destroy_instance(self.handle, ptr::null());
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 11:58:24 +11:00
|
|
|
|
2016-12-09 09:09:24 +11:00
|
|
|
pub fn destroy_debug_report_callback_ext(&self, debug: vk::DebugReportCallbackEXT) {
|
|
|
|
unsafe {
|
|
|
|
self.instance_fn.destroy_debug_report_callback_ext(self.handle, debug, ptr::null());
|
|
|
|
}
|
|
|
|
}
|
2016-12-04 10:56:58 +11:00
|
|
|
|
2016-12-09 09:09:24 +11:00
|
|
|
pub fn create_debug_report_callback_ext(&self,
|
|
|
|
create_info: &vk::DebugReportCallbackCreateInfoEXT)
|
|
|
|
-> VkResult<vk::DebugReportCallbackEXT> {
|
|
|
|
unsafe {
|
|
|
|
let mut debug_cb = mem::uninitialized();
|
|
|
|
let err_code = self.instance_fn
|
|
|
|
.create_debug_report_callback_ext(self.handle,
|
|
|
|
create_info,
|
|
|
|
ptr::null(),
|
|
|
|
&mut debug_cb);
|
|
|
|
match err_code {
|
|
|
|
vk::Result::Success => Ok(debug_cb),
|
|
|
|
_ => Err(err_code),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 11:58:24 +11:00
|
|
|
|
2016-12-05 12:18:13 +11:00
|
|
|
pub fn get_physical_device_memory_properties(&self,
|
|
|
|
physical_device: vk::PhysicalDevice)
|
|
|
|
-> vk::PhysicalDeviceMemoryProperties {
|
|
|
|
unsafe {
|
|
|
|
let mut memory_prop = mem::uninitialized();
|
|
|
|
self.instance_fn
|
|
|
|
.get_physical_device_memory_properties(physical_device, &mut memory_prop);
|
|
|
|
memory_prop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-05 08:51:34 +11:00
|
|
|
pub fn get_physical_device_surface_present_modes_khr(&self,
|
|
|
|
physical_device: vk::PhysicalDevice,
|
|
|
|
surface: vk::SurfaceKHR)
|
|
|
|
-> VkResult<Vec<vk::PresentModeKHR>> {
|
|
|
|
unsafe {
|
|
|
|
let mut count = 0;
|
|
|
|
self.instance_fn.get_physical_device_surface_present_modes_khr(physical_device,
|
|
|
|
surface,
|
|
|
|
&mut count,
|
|
|
|
ptr::null_mut());
|
|
|
|
let mut v = Vec::with_capacity(count as usize);
|
|
|
|
let err_code = self.instance_fn
|
|
|
|
.get_physical_device_surface_present_modes_khr(physical_device,
|
|
|
|
surface,
|
|
|
|
&mut count,
|
|
|
|
v.as_mut_ptr());
|
|
|
|
v.set_len(count as usize);
|
|
|
|
match err_code {
|
|
|
|
vk::Result::Success => Ok(v),
|
|
|
|
_ => Err(err_code),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 11:58:24 +11:00
|
|
|
|
2016-12-05 08:51:34 +11:00
|
|
|
pub fn get_physical_device_surface_capabilities_khr(&self,
|
|
|
|
physical_device: vk::PhysicalDevice,
|
|
|
|
surface: vk::SurfaceKHR)
|
|
|
|
-> VkResult<vk::SurfaceCapabilitiesKHR> {
|
|
|
|
unsafe {
|
|
|
|
let mut surface_capabilities = mem::uninitialized();
|
|
|
|
let err_code = self.instance_fn
|
|
|
|
.get_physical_device_surface_capabilities_khr(physical_device,
|
|
|
|
surface,
|
|
|
|
&mut surface_capabilities);
|
|
|
|
match err_code {
|
|
|
|
vk::Result::Success => Ok(surface_capabilities),
|
|
|
|
_ => Err(err_code),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_physical_device_surface_formats_khr(&self,
|
|
|
|
physical_device: vk::PhysicalDevice,
|
|
|
|
surface: vk::SurfaceKHR)
|
|
|
|
-> VkResult<Vec<vk::SurfaceFormatKHR>> {
|
|
|
|
unsafe {
|
|
|
|
let mut count = 0;
|
|
|
|
self.instance_fn.get_physical_device_surface_formats_khr(physical_device,
|
|
|
|
surface,
|
|
|
|
&mut count,
|
|
|
|
ptr::null_mut());
|
|
|
|
let mut v = Vec::with_capacity(count as usize);
|
|
|
|
let err_code = self.instance_fn
|
|
|
|
.get_physical_device_surface_formats_khr(physical_device,
|
|
|
|
surface,
|
|
|
|
&mut count,
|
|
|
|
v.as_mut_ptr());
|
|
|
|
v.set_len(count as usize);
|
|
|
|
match err_code {
|
|
|
|
vk::Result::Success => Ok(v),
|
|
|
|
_ => Err(err_code),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-04 10:56:58 +11:00
|
|
|
pub fn destroy_surface_khr(&self, surface: vk::SurfaceKHR) {
|
|
|
|
unsafe {
|
|
|
|
self.instance_fn.destroy_surface_khr(self.handle, surface, ptr::null());
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 11:58:24 +11:00
|
|
|
|
2016-12-09 11:55:29 +11:00
|
|
|
pub fn create_xlib_surface_khr(&self,
|
|
|
|
create_info: &vk::XlibSurfaceCreateInfoKHR)
|
|
|
|
-> VkResult<vk::SurfaceKHR> {
|
2016-12-04 10:56:58 +11:00
|
|
|
unsafe {
|
|
|
|
let mut surface = mem::uninitialized();
|
|
|
|
let err_code = self.instance_fn
|
2016-12-09 11:55:29 +11:00
|
|
|
.create_xlib_surface_khr(self.handle, create_info, ptr::null(), &mut surface);
|
2016-12-04 10:56:58 +11:00
|
|
|
match err_code {
|
|
|
|
vk::Result::Success => Ok(surface),
|
|
|
|
_ => Err(err_code),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2016-12-09 11:58:24 +11:00
|
|
|
|
2016-12-04 10:56:58 +11:00
|
|
|
pub fn get_physical_device_surface_support_khr(&self,
|
|
|
|
physical_device: vk::PhysicalDevice,
|
2016-12-09 11:55:29 +11:00
|
|
|
queue_index: vk::uint32_t,
|
2016-12-04 10:56:58 +11:00
|
|
|
surface: vk::SurfaceKHR)
|
|
|
|
-> bool {
|
|
|
|
unsafe {
|
|
|
|
let mut b = mem::uninitialized();
|
|
|
|
self.instance_fn
|
|
|
|
.get_physical_device_surface_support_khr(physical_device,
|
|
|
|
queue_index,
|
|
|
|
surface,
|
|
|
|
&mut b);
|
|
|
|
b > 0
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 11:58:24 +11:00
|
|
|
|
2016-12-04 10:56:58 +11:00
|
|
|
pub fn get_physical_device_queue_family_properties(&self,
|
|
|
|
physical_device: vk::PhysicalDevice)
|
|
|
|
-> Vec<vk::QueueFamilyProperties> {
|
|
|
|
unsafe {
|
|
|
|
let mut queue_count = 0;
|
|
|
|
self.instance_fn
|
|
|
|
.get_physical_device_queue_family_properties(physical_device,
|
|
|
|
&mut queue_count,
|
|
|
|
ptr::null_mut());
|
|
|
|
let mut queue_families_vec = Vec::with_capacity(queue_count as usize);
|
|
|
|
let err_code = self.instance_fn
|
|
|
|
.get_physical_device_queue_family_properties(physical_device,
|
|
|
|
&mut queue_count,
|
|
|
|
queue_families_vec.as_mut_ptr());
|
|
|
|
queue_families_vec.set_len(queue_count as usize);
|
|
|
|
queue_families_vec
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-14 09:13:39 +10:00
|
|
|
|
2016-12-04 10:56:58 +11:00
|
|
|
pub fn enumerate_physical_devices(&self) -> VkResult<Vec<vk::PhysicalDevice>> {
|
2016-11-29 07:16:35 +11:00
|
|
|
unsafe {
|
|
|
|
let mut num = mem::uninitialized();
|
|
|
|
self.instance_fn
|
|
|
|
.enumerate_physical_devices(self.handle, &mut num, ptr::null_mut());
|
|
|
|
let mut physical_devices = Vec::<vk::PhysicalDevice>::with_capacity(num as usize);
|
|
|
|
let err_code = self.instance_fn
|
|
|
|
.enumerate_physical_devices(self.handle, &mut num, physical_devices.as_mut_ptr());
|
|
|
|
physical_devices.set_len(num as usize);
|
|
|
|
match err_code {
|
|
|
|
vk::Result::Success => Ok(physical_devices),
|
|
|
|
_ => Err(err_code),
|
|
|
|
}
|
2016-08-14 09:13:39 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-29 07:16:35 +11:00
|
|
|
pub fn enumerate_device_extension_properties
|
|
|
|
(&self,
|
|
|
|
device: vk::PhysicalDevice)
|
|
|
|
-> Result<Vec<vk::ExtensionProperties>, vk::Result> {
|
2016-08-14 09:13:39 +10:00
|
|
|
unsafe {
|
|
|
|
let mut num = 0;
|
2016-11-29 07:16:35 +11:00
|
|
|
self.instance_fn
|
|
|
|
.enumerate_device_extension_properties(device,
|
|
|
|
ptr::null(),
|
|
|
|
&mut num,
|
|
|
|
ptr::null_mut());
|
|
|
|
let mut data = Vec::with_capacity(num as usize);
|
|
|
|
let err_code = self.instance_fn
|
|
|
|
.enumerate_device_extension_properties(device,
|
|
|
|
ptr::null(),
|
|
|
|
&mut num,
|
|
|
|
data.as_mut_ptr());
|
|
|
|
data.set_len(num as usize);
|
|
|
|
match err_code {
|
|
|
|
vk::Result::Success => Ok(data),
|
|
|
|
_ => Err(err_code),
|
|
|
|
}
|
2016-08-14 09:13:39 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|