Expose cmd_set_line_width

This commit is contained in:
Joshua Groves 2018-05-18 12:56:43 -06:00
parent af0142dce9
commit a118b58020

View file

@ -699,6 +699,17 @@ pub trait DeviceV1_0 {
);
}
unsafe fn cmd_set_line_width(
&self,
command_buffer: vk::CommandBuffer,
line_width: f32,
) {
self.fp_v1_0().cmd_set_line_width(
command_buffer,
line_width,
);
}
unsafe fn cmd_bind_vertex_buffers(
&self,
command_buffer: vk::CommandBuffer,