ash/device: Add missing Device::get_device_queue2()
wrapper (#736)
ash/device: Add missing Device::get_device_queue2() wrapper
This commit is contained in:
parent
30cb8f1d7c
commit
88e46b43a4
|
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Update Vulkan-Headers to 1.3.246 (#697, #723)
|
||||
- Added `VK_KHR_performance_query` device extension (#726)
|
||||
- Added `VK_EXT_shader_object` device extension (#732)
|
||||
- Added missing `Device::get_device_queue2()` wrapper (#736)
|
||||
|
||||
### Changed
|
||||
|
||||
|
|
|
@ -854,6 +854,14 @@ impl Device {
|
|||
(self.device_fn_1_1.trim_command_pool)(self.handle(), command_pool, flags);
|
||||
}
|
||||
|
||||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetDeviceQueue2.html>
|
||||
#[inline]
|
||||
pub unsafe fn get_device_queue2(&self, queue_info: &vk::DeviceQueueInfo2) -> vk::Queue {
|
||||
let mut queue = mem::zeroed();
|
||||
(self.device_fn_1_1.get_device_queue2)(self.handle(), queue_info, &mut queue);
|
||||
queue
|
||||
}
|
||||
|
||||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkCreateSamplerYcbcrConversion.html>
|
||||
#[inline]
|
||||
pub unsafe fn create_sampler_ycbcr_conversion(
|
||||
|
|
Loading…
Reference in a new issue