-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extensions/nv: Add VK_NV_coverage_reduction_mode (#617)
- Loading branch information
Showing
4 changed files
with
70 additions
and
1 deletion.
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,66 @@ | ||
use crate::prelude::*; | ||
use crate::vk; | ||
use crate::{Entry, Instance}; | ||
use std::ffi::CStr; | ||
use std::mem; | ||
|
||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_NV_coverage_reduction_mode.html> | ||
#[derive(Clone)] | ||
pub struct CoverageReductionMode { | ||
fp: vk::NvCoverageReductionModeFn, | ||
} | ||
|
||
impl CoverageReductionMode { | ||
pub fn new(entry: &Entry, instance: &Instance) -> Self { | ||
let fp = vk::NvCoverageReductionModeFn::load(|name| unsafe { | ||
mem::transmute(entry.get_instance_proc_addr(instance.handle(), name.as_ptr())) | ||
}); | ||
Self { fp } | ||
} | ||
|
||
/// Retrieve the number of elements to pass to [`get_physical_device_supported_framebuffer_mixed_samples_combinations()`][Self::get_physical_device_supported_framebuffer_mixed_samples_combinations()] | ||
pub unsafe fn get_physical_device_supported_framebuffer_mixed_samples_combinations_len( | ||
&self, | ||
physical_device: vk::PhysicalDevice, | ||
) -> VkResult<usize> { | ||
let mut count = 0; | ||
(self | ||
.fp | ||
.get_physical_device_supported_framebuffer_mixed_samples_combinations_nv)( | ||
physical_device, | ||
&mut count, | ||
std::ptr::null_mut(), | ||
) | ||
.result_with_success(count as usize) | ||
} | ||
|
||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV.html> | ||
/// | ||
/// Call [`get_physical_device_supported_framebuffer_mixed_samples_combinations_len()`][Self::get_physical_device_supported_framebuffer_mixed_samples_combinations_len()] to query the number of elements to pass to `out`. | ||
/// Be sure to [`Default::default()`]-initialize these elements and optionally set their `p_next` pointer. | ||
pub unsafe fn get_physical_device_supported_framebuffer_mixed_samples_combinations( | ||
&self, | ||
physical_device: vk::PhysicalDevice, | ||
out: &mut [vk::FramebufferMixedSamplesCombinationNV], | ||
) -> VkResult<()> { | ||
let mut count = out.len() as u32; | ||
(self | ||
.fp | ||
.get_physical_device_supported_framebuffer_mixed_samples_combinations_nv)( | ||
physical_device, | ||
&mut count, | ||
out.as_mut_ptr(), | ||
) | ||
.result()?; | ||
assert_eq!(count as usize, out.len()); | ||
Ok(()) | ||
} | ||
|
||
pub const fn name() -> &'static CStr { | ||
vk::NvCoverageReductionModeFn::name() | ||
} | ||
|
||
pub fn fp(&self) -> &vk::NvCoverageReductionModeFn { | ||
&self.fp | ||
} | ||
} |
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
pub use self::coverage_reduction_mode::CoverageReductionMode; | ||
pub use self::device_diagnostic_checkpoints::DeviceDiagnosticCheckpoints; | ||
pub use self::mesh_shader::MeshShader; | ||
pub use self::ray_tracing::RayTracing; | ||
|
||
mod coverage_reduction_mode; | ||
mod device_diagnostic_checkpoints; | ||
mod mesh_shader; | ||
mod ray_tracing; |