portability/libportability-icd/src/lib.rs

40 lines
894 B
Rust
Raw Normal View History

2017-12-09 05:18:18 +11:00
#![allow(non_snake_case)]
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]
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 {
gfxGetInstanceProcAddr(instance, pName)
2017-12-09 05:18:18 +11:00
}
#[no_mangle]
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]
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 {
gfxGetPhysicslDeviceProcAddr(instance, pName)
2017-12-09 05:18:18 +11:00
}