2017-12-09 05:18:18 +11:00
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
2017-12-08 23:11:54 +11:00
|
|
|
extern crate portability_gfx;
|
|
|
|
|
|
|
|
use portability_gfx::*;
|
2017-12-09 05:18:18 +11:00
|
|
|
|
|
|
|
use std::ffi::CStr;
|
|
|
|
use std::mem;
|
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
const ICD_VERSION: u32 = 5;
|
|
|
|
|
|
|
|
#[no_mangle]
|
2018-01-05 04:27:43 +11:00
|
|
|
pub extern "C" fn vk_icdGetInstanceProcAddr(
|
|
|
|
instance: VkInstance,
|
|
|
|
pName: *const ::std::os::raw::c_char,
|
2017-12-09 05:18:18 +11:00
|
|
|
) -> PFN_vkVoidFunction {
|
2018-01-20 02:02:28 +11:00
|
|
|
gfxGetInstanceProcAddr(instance, pName)
|
2017-12-09 05:18:18 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2018-01-05 04:27:43 +11:00
|
|
|
pub extern "C" fn vk_icdNegotiateLoaderICDInterfaceVersion(
|
2017-12-09 05:18:18 +11:00
|
|
|
pSupportedVersion: *mut ::std::os::raw::c_uint,
|
|
|
|
) -> VkResult {
|
|
|
|
let supported_version = unsafe { &mut *pSupportedVersion };
|
|
|
|
if *supported_version > ICD_VERSION {
|
|
|
|
*supported_version = ICD_VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
VkResult::VK_SUCCESS
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2018-01-05 04:27:43 +11:00
|
|
|
pub extern "C" fn vk_icdGetPhysicalDeviceProcAddr(
|
|
|
|
instance: VkInstance,
|
|
|
|
pName: *const ::std::os::raw::c_char,
|
2017-12-09 05:18:18 +11:00
|
|
|
) -> PFN_vkVoidFunction {
|
2018-01-20 02:02:28 +11:00
|
|
|
gfxGetPhysicslDeviceProcAddr(instance, pName)
|
2017-12-09 05:18:18 +11:00
|
|
|
}
|