Integration extensible versions

This commit is contained in:
maik klein 2016-12-30 03:34:14 +01:00
parent a95572af4a
commit 9e2d28b301
5 changed files with 93 additions and 56 deletions

View file

@ -16,6 +16,7 @@ use ash::device::Device;
use std::ptr; use std::ptr;
use std::ffi::{CStr, CString}; use std::ffi::{CStr, CString};
use std::ops::Drop; use std::ops::Drop;
use ash::instance::InstanceMajor1Minor0;
// Simple offset_of macro akin to C++ offsetof // Simple offset_of macro akin to C++ offsetof
#[macro_export] #[macro_export]

View file

@ -2,7 +2,7 @@ use prelude::*;
use std::mem; use std::mem;
use std::ptr; use std::ptr;
use vk; use vk;
use instance::Instance; use instance::{Instance, V1_0, InstanceFpV1_0};
use shared_library::dynamic_library::DynamicLibrary; use shared_library::dynamic_library::DynamicLibrary;
use std::path::Path; use std::path::Path;
use ::RawPtr; use ::RawPtr;
@ -73,7 +73,7 @@ impl Entry {
pub fn create_instance(&self, pub fn create_instance(&self,
create_info: &vk::InstanceCreateInfo, create_info: &vk::InstanceCreateInfo,
allocation_callbacks: Option<&vk::AllocationCallbacks>) allocation_callbacks: Option<&vk::AllocationCallbacks>)
-> Result<Instance, InstanceError> { -> Result<Instance<V1_0>, InstanceError> {
unsafe { unsafe {
let mut instance: vk::Instance = mem::uninitialized(); let mut instance: vk::Instance = mem::uninitialized();
let err_code = self.entry_fn.create_instance(create_info, let err_code = self.entry_fn.create_instance(create_info,
@ -85,7 +85,7 @@ impl Entry {
let instance_fn = vk::InstanceFn::load(|name| { let instance_fn = vk::InstanceFn::load(|name| {
mem::transmute(self.static_fn.get_instance_proc_addr(instance, name.as_ptr())) mem::transmute(self.static_fn.get_instance_proc_addr(instance, name.as_ptr()))
}).map_err(|err| InstanceError::LoadError(err))?; }).map_err(|err| InstanceError::LoadError(err))?;
Ok(Instance::from_raw(instance, instance_fn)) Ok(Instance::from_raw(instance, InstanceFpV1_0 { instance_fn: instance_fn }))
} }
} }

View file

@ -1,19 +1,19 @@
pub use self::swapchain::Swapchain; //pub use self::swapchain::Swapchain;
pub use self::surface::Surface; //pub use self::surface::Surface;
pub use self::xlib_surface::XlibSurface; //pub use self::xlib_surface::XlibSurface;
pub use self::debug_report::DebugReport; //pub use self::debug_report::DebugReport;
pub use self::win32_surface::Win32Surface; //pub use self::win32_surface::Win32Surface;
pub use self::mir_surface::MirSurface; //pub use self::mir_surface::MirSurface;
pub use self::xcb_surface::XcbSurface; //pub use self::xcb_surface::XcbSurface;
pub use self::wayland_surface::WaylandSurface; //pub use self::wayland_surface::WaylandSurface;
pub use self::android_surface::AndroidSurface; //pub use self::android_surface::AndroidSurface;
//
mod swapchain; //mod swapchain;
mod surface; //mod surface;
mod xlib_surface; //mod xlib_surface;
mod win32_surface; //mod win32_surface;
mod debug_report; //mod debug_report;
mod mir_surface; //mod mir_surface;
mod android_surface; //mod android_surface;
mod wayland_surface; //mod wayland_surface;
mod xcb_surface; //mod xcb_surface;

View file

@ -6,6 +6,7 @@ use device::Device;
use vk; use vk;
use std::ffi::CStr; use std::ffi::CStr;
use ::RawPtr; use ::RawPtr;
use instance::InstanceMajor1Minor0;
#[derive(Clone)] #[derive(Clone)]
pub struct Swapchain { pub struct Swapchain {

View file

@ -12,31 +12,63 @@ pub enum DeviceError {
VkError(vk::Result), VkError(vk::Result),
} }
#[derive(Clone)] pub trait VkVersion{
pub struct Instance { type InstanceFp;
handle: vk::Instance, type DeviceFp;
instance_fn: vk::InstanceFn,
} }
impl Instance { #[warn(non_camel_case_types)]
pub struct V1_0;
impl VkVersion for V1_0{
type InstanceFp = InstanceFpV1_0;
type DeviceFp = ();
}
#[warn(non_camel_case_types)]
pub struct InstanceFpV1_0{
pub instance_fn: vk::InstanceFn
}
#[derive(Clone)]
pub struct Instance<V: VkVersion> {
handle: vk::Instance,
instance_fp: V::InstanceFp
}
impl InstanceV1_0 for Instance<V1_0>{
fn handle(&self) -> vk::Instance{
self.handle
}
fn fp_v1_0(&self) -> &vk::InstanceFn{
&self.instance_fp.instance_fn
}
}
impl<V: VkVersion> Instance<V> {
pub fn handle(&self) -> vk::Instance { pub fn handle(&self) -> vk::Instance {
self.handle self.handle
} }
pub fn from_raw(handle: vk::Instance, instance_fn: vk::InstanceFn) -> Self { pub fn from_raw(handle: vk::Instance, version: V::InstanceFp) -> Self {
Instance { Instance {
handle: handle, handle: handle,
instance_fn: instance_fn, instance_fp: version
} }
} }
pub unsafe fn create_device(&self, }
physical_device: vk::PhysicalDevice,
create_info: &vk::DeviceCreateInfo, #[warn(non_camel_case_types)]
allocation_callbacks: Option<&vk::AllocationCallbacks>) pub trait InstanceV1_0 {
-> Result<Device, DeviceError> { fn handle(&self) -> vk::Instance;
fn fp_v1_0(&self) -> &vk::InstanceFn;
unsafe fn create_device(&self,
physical_device: vk::PhysicalDevice,
create_info: &vk::DeviceCreateInfo,
allocation_callbacks: Option<&vk::AllocationCallbacks>)
-> Result<Device, DeviceError> {
let mut device: vk::Device = mem::uninitialized(); let mut device: vk::Device = mem::uninitialized();
let err_code = self.instance_fn let err_code = self.fp_v1_0()
.create_device(physical_device, .create_device(physical_device,
create_info, create_info,
allocation_callbacks.as_raw_ptr(), allocation_callbacks.as_raw_ptr(),
@ -45,55 +77,54 @@ impl Instance {
return Err(DeviceError::VkError(err_code)); return Err(DeviceError::VkError(err_code));
} }
let device_fn = vk::DeviceFn::load(|name| { let device_fn = vk::DeviceFn::load(|name| {
mem::transmute(self.instance_fn.get_device_proc_addr(device, name.as_ptr())) mem::transmute(self.fp_v1_0().get_device_proc_addr(device, name.as_ptr()))
}).map_err(|err| DeviceError::LoadError(err))?; }).map_err(|err| DeviceError::LoadError(err))?;
Ok(Device::from_raw(device, device_fn)) Ok(Device::from_raw(device, device_fn))
} }
fn get_device_proc_addr(&self,
pub fn get_device_proc_addr(&self,
device: vk::Device, device: vk::Device,
p_name: *const vk::c_char) p_name: *const vk::c_char)
-> vk::PFN_vkVoidFunction { -> vk::PFN_vkVoidFunction {
unsafe { self.instance_fn.get_device_proc_addr(device, p_name) } unsafe { self.fp_v1_0().get_device_proc_addr(device, p_name) }
} }
pub unsafe fn destroy_instance(&self, allocation_callbacks: Option<&vk::AllocationCallbacks>) { unsafe fn destroy_instance(&self, allocation_callbacks: Option<&vk::AllocationCallbacks>) {
self.instance_fn.destroy_instance(self.handle, allocation_callbacks.as_raw_ptr()); self.fp_v1_0().destroy_instance(self.handle(), allocation_callbacks.as_raw_ptr());
} }
pub fn get_physical_device_format_properties(&self, fn get_physical_device_format_properties(&self,
physical_device: vk::PhysicalDevice, physical_device: vk::PhysicalDevice,
format: vk::Format) format: vk::Format)
-> vk::FormatProperties { -> vk::FormatProperties {
unsafe { unsafe {
let mut format_prop = mem::uninitialized(); let mut format_prop = mem::uninitialized();
self.instance_fn self.fp_v1_0()
.get_physical_device_format_properties(physical_device, format, &mut format_prop); .get_physical_device_format_properties(physical_device, format, &mut format_prop);
format_prop format_prop
} }
} }
pub fn get_physical_device_memory_properties(&self, fn get_physical_device_memory_properties(&self,
physical_device: vk::PhysicalDevice) physical_device: vk::PhysicalDevice)
-> vk::PhysicalDeviceMemoryProperties { -> vk::PhysicalDeviceMemoryProperties {
unsafe { unsafe {
let mut memory_prop = mem::uninitialized(); let mut memory_prop = mem::uninitialized();
self.instance_fn self.fp_v1_0()
.get_physical_device_memory_properties(physical_device, &mut memory_prop); .get_physical_device_memory_properties(physical_device, &mut memory_prop);
memory_prop memory_prop
} }
} }
pub fn get_physical_device_queue_family_properties(&self, fn get_physical_device_queue_family_properties(&self,
physical_device: vk::PhysicalDevice) physical_device: vk::PhysicalDevice)
-> Vec<vk::QueueFamilyProperties> { -> Vec<vk::QueueFamilyProperties> {
unsafe { unsafe {
let mut queue_count = 0; let mut queue_count = 0;
self.instance_fn self.fp_v1_0()
.get_physical_device_queue_family_properties(physical_device, .get_physical_device_queue_family_properties(physical_device,
&mut queue_count, &mut queue_count,
ptr::null_mut()); ptr::null_mut());
let mut queue_families_vec = Vec::with_capacity(queue_count as usize); let mut queue_families_vec = Vec::with_capacity(queue_count as usize);
self.instance_fn self.fp_v1_0()
.get_physical_device_queue_family_properties(physical_device, .get_physical_device_queue_family_properties(physical_device,
&mut queue_count, &mut queue_count,
queue_families_vec.as_mut_ptr()); queue_families_vec.as_mut_ptr());
@ -102,14 +133,14 @@ impl Instance {
} }
} }
pub fn enumerate_physical_devices(&self) -> VkResult<Vec<vk::PhysicalDevice>> { fn enumerate_physical_devices(&self) -> VkResult<Vec<vk::PhysicalDevice>> {
unsafe { unsafe {
let mut num = mem::uninitialized(); let mut num = mem::uninitialized();
self.instance_fn self.fp_v1_0()
.enumerate_physical_devices(self.handle, &mut num, ptr::null_mut()); .enumerate_physical_devices(self.handle(), &mut num, ptr::null_mut());
let mut physical_devices = Vec::<vk::PhysicalDevice>::with_capacity(num as usize); let mut physical_devices = Vec::<vk::PhysicalDevice>::with_capacity(num as usize);
let err_code = self.instance_fn let err_code = self.fp_v1_0()
.enumerate_physical_devices(self.handle, &mut num, physical_devices.as_mut_ptr()); .enumerate_physical_devices(self.handle(), &mut num, physical_devices.as_mut_ptr());
physical_devices.set_len(num as usize); physical_devices.set_len(num as usize);
match err_code { match err_code {
vk::Result::Success => Ok(physical_devices), vk::Result::Success => Ok(physical_devices),
@ -118,19 +149,19 @@ impl Instance {
} }
} }
pub fn enumerate_device_extension_properties fn enumerate_device_extension_properties
(&self, (&self,
device: vk::PhysicalDevice) device: vk::PhysicalDevice)
-> Result<Vec<vk::ExtensionProperties>, vk::Result> { -> Result<Vec<vk::ExtensionProperties>, vk::Result> {
unsafe { unsafe {
let mut num = 0; let mut num = 0;
self.instance_fn self.fp_v1_0()
.enumerate_device_extension_properties(device, .enumerate_device_extension_properties(device,
ptr::null(), ptr::null(),
&mut num, &mut num,
ptr::null_mut()); ptr::null_mut());
let mut data = Vec::with_capacity(num as usize); let mut data = Vec::with_capacity(num as usize);
let err_code = self.instance_fn let err_code = self.fp_v1_0()
.enumerate_device_extension_properties(device, .enumerate_device_extension_properties(device,
ptr::null(), ptr::null(),
&mut num, &mut num,
@ -143,3 +174,7 @@ impl Instance {
} }
} }
} }
//pub trait InstanceMajor1Minor1: InstanceMajor1Minor0 {}
//pub trait InstanceMajor1Minor2: InstanceMajor1Minor1 {}