From a118b58020ad349d071e215a19f014270e37f049 Mon Sep 17 00:00:00 2001 From: Joshua Groves Date: Fri, 18 May 2018 12:56:43 -0600 Subject: [PATCH] Expose cmd_set_line_width --- ash/src/device.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ash/src/device.rs b/ash/src/device.rs index bce3645..cbc05c5 100644 --- a/ash/src/device.rs +++ b/ash/src/device.rs @@ -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,