Merge pull request #62 from jbatez/master

Expose cmd_set_depth_bounds
This commit is contained in:
Maik Klein 2018-05-06 11:48:22 +02:00 committed by GitHub
commit f2e8e7d542
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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,