Expose cmd_set_depth_bounds

This commit is contained in:
Jo Bates 2018-05-05 14:40:12 -05:00
parent 663c8d1770
commit ea0a54b993

View file

@ -793,6 +793,16 @@ pub trait DeviceV1_0 {
.cmd_set_blend_constants(command_buffer, &blend_constants);
}
unsafe fn cmd_set_depth_bounds(
&self,
command_buffer: vk::CommandBuffer,
min_depth_bounds: f32,
max_depth_bounds: f32,
) {
self.fp_v1_0()
.cmd_set_depth_bounds(command_buffer, min_depth_bounds, max_depth_bounds);
}
unsafe fn cmd_set_stencil_reference(
&self,
command_buffer: vk::CommandBuffer,