Merge pull request #63 from grovesNL/line-width

Expose `cmd_set_line_width`
This commit is contained in:
Maik Klein 2018-05-23 09:29:39 +02:00 committed by GitHub
commit 28bf5b6ed7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "ash"
version = "0.24.0"
version = "0.24.1"
authors = ["maik klein <maikklein@googlemail.com>"]
description = "Vulkan bindings for Rust"
license = "MIT"

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,