File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
### Added
11
11
12
12
- Added ` VK_EXT_metal_objects ` device extension (#942 )
13
+ - Added ` VK_EXT_depth_clamp_control ` device extension (#947 )
13
14
14
15
## [ 0.38.0] - 2024-04-01
15
16
Original file line number Diff line number Diff line change
1
+ //! <https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_EXT_depth_clamp_control.html>
2
+
3
+ use crate :: vk;
4
+
5
+ impl crate :: ext:: depth_clamp_control:: Device {
6
+ /// <https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkCmdSetDepthClampRangeEXT.html>
7
+ #[ inline]
8
+ #[ doc( alias = "vkCmdSetDepthClampRangeEXT" ) ]
9
+ pub unsafe fn cmd_set_depth_clamp_range (
10
+ & self ,
11
+ command_buffer : vk:: CommandBuffer ,
12
+ depth_clamp_mode : vk:: DepthClampModeEXT ,
13
+ depth_clamp_range : & vk:: DepthClampRangeEXT ,
14
+ ) {
15
+ ( self . fp . cmd_set_depth_clamp_range_ext ) ( command_buffer, depth_clamp_mode, depth_clamp_range)
16
+ }
17
+ }
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ pub mod debug_marker;
6
6
#[ deprecated( note = "Please use the [DebugUtils](struct.DebugUtils.html) extension instead." ) ]
7
7
pub mod debug_report;
8
8
pub mod debug_utils;
9
+ pub mod depth_clamp_control;
9
10
pub mod descriptor_buffer;
10
11
pub mod extended_dynamic_state;
11
12
pub mod extended_dynamic_state2;
You can’t perform that action at this time.
0 commit comments