-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extensions/ext: Add VK_EXT_pipeline_properties device extension
- Loading branch information
Showing
3 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
use crate::prelude::*; | ||
use crate::vk; | ||
use crate::{Device, Instance}; | ||
use std::ffi::CStr; | ||
use std::mem; | ||
|
||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_EXT_pipeline_properties.html> | ||
#[derive(Clone)] | ||
pub struct PipelineProperties { | ||
handle: vk::Device, | ||
fp: vk::ExtPipelinePropertiesFn, | ||
} | ||
|
||
impl PipelineProperties { | ||
pub fn new(instance: &Instance, device: &Device) -> Self { | ||
let handle = device.handle(); | ||
let fp = vk::ExtPipelinePropertiesFn::load(|name| unsafe { | ||
mem::transmute(instance.get_device_proc_addr(handle, name.as_ptr())) | ||
}); | ||
Self { handle, fp } | ||
} | ||
|
||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetPipelinePropertiesEXT.html> | ||
/// | ||
/// Currently only accepts [`vk::PipelinePropertiesIdentifierEXT`]. | ||
#[inline] | ||
pub unsafe fn get_pipeline_properties( | ||
&self, | ||
pipeline_info: &vk::PipelineInfoEXT, | ||
pipeline_properties: *mut vk::BaseOutStructure, | ||
) -> VkResult<()> { | ||
(self.fp.get_pipeline_properties_ext)(self.handle, pipeline_info, pipeline_properties) | ||
.result() | ||
} | ||
|
||
pub const NAME: &'static CStr = vk::ExtPipelinePropertiesFn::NAME; | ||
|
||
#[inline] | ||
pub fn fp(&self) -> &vk::ExtPipelinePropertiesFn { | ||
&self.fp | ||
} | ||
|
||
#[inline] | ||
pub fn device(&self) -> vk::Device { | ||
self.handle | ||
} | ||
} |