commit
65040ecbea
|
@ -5,7 +5,7 @@ os:
|
||||||
language: rust
|
language: rust
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- rustup component add rustfmt-preview
|
- rustup component add rustfmt
|
||||||
|
|
||||||
rust:
|
rust:
|
||||||
- stable
|
- stable
|
||||||
|
|
|
@ -17,11 +17,7 @@ const LIB_PATH: &'static str = "vulkan-1.dll";
|
||||||
|
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
unix,
|
unix,
|
||||||
not(any(
|
not(any(target_os = "macos", target_os = "ios", target_os = "android"))
|
||||||
target_os = "macos",
|
|
||||||
target_os = "ios",
|
|
||||||
target_os = "android"
|
|
||||||
))
|
|
||||||
))]
|
))]
|
||||||
const LIB_PATH: &'static str = "libvulkan.so.1";
|
const LIB_PATH: &'static str = "libvulkan.so.1";
|
||||||
|
|
||||||
|
|
3739
ash/src/vk.rs
3739
ash/src/vk.rs
File diff suppressed because it is too large
Load diff
|
@ -121,7 +121,8 @@ fn main() {
|
||||||
base.device
|
base.device
|
||||||
.create_framebuffer(&frame_buffer_create_info, None)
|
.create_framebuffer(&frame_buffer_create_info, None)
|
||||||
.unwrap()
|
.unwrap()
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
let index_buffer_data = [0u32, 1, 2, 2, 3, 0];
|
let index_buffer_data = [0u32, 1, 2, 2, 3, 0];
|
||||||
let index_buffer_info = vk::BufferCreateInfo {
|
let index_buffer_info = vk::BufferCreateInfo {
|
||||||
s_type: vk::StructureType::BUFFER_CREATE_INFO,
|
s_type: vk::StructureType::BUFFER_CREATE_INFO,
|
||||||
|
@ -139,7 +140,8 @@ fn main() {
|
||||||
&index_buffer_memory_req,
|
&index_buffer_memory_req,
|
||||||
&base.device_memory_properties,
|
&base.device_memory_properties,
|
||||||
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
||||||
).expect("Unable to find suitable memorytype for the index buffer.");
|
)
|
||||||
|
.expect("Unable to find suitable memorytype for the index buffer.");
|
||||||
let index_allocate_info = vk::MemoryAllocateInfo {
|
let index_allocate_info = vk::MemoryAllocateInfo {
|
||||||
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
||||||
p_next: ptr::null(),
|
p_next: ptr::null(),
|
||||||
|
@ -157,7 +159,8 @@ fn main() {
|
||||||
0,
|
0,
|
||||||
index_buffer_memory_req.size,
|
index_buffer_memory_req.size,
|
||||||
vk::MemoryMapFlags::empty(),
|
vk::MemoryMapFlags::empty(),
|
||||||
).unwrap();
|
)
|
||||||
|
.unwrap();
|
||||||
let mut index_slice = Align::new(
|
let mut index_slice = Align::new(
|
||||||
index_ptr,
|
index_ptr,
|
||||||
align_of::<u32>() as u64,
|
align_of::<u32>() as u64,
|
||||||
|
@ -208,7 +211,8 @@ fn main() {
|
||||||
&vertex_input_buffer_memory_req,
|
&vertex_input_buffer_memory_req,
|
||||||
&base.device_memory_properties,
|
&base.device_memory_properties,
|
||||||
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
||||||
).expect("Unable to find suitable memorytype for the vertex buffer.");
|
)
|
||||||
|
.expect("Unable to find suitable memorytype for the vertex buffer.");
|
||||||
|
|
||||||
let vertex_buffer_allocate_info = vk::MemoryAllocateInfo {
|
let vertex_buffer_allocate_info = vk::MemoryAllocateInfo {
|
||||||
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
||||||
|
@ -227,7 +231,8 @@ fn main() {
|
||||||
0,
|
0,
|
||||||
vertex_input_buffer_memory_req.size,
|
vertex_input_buffer_memory_req.size,
|
||||||
vk::MemoryMapFlags::empty(),
|
vk::MemoryMapFlags::empty(),
|
||||||
).unwrap();
|
)
|
||||||
|
.unwrap();
|
||||||
let mut slice = Align::new(
|
let mut slice = Align::new(
|
||||||
vert_ptr,
|
vert_ptr,
|
||||||
align_of::<Vertex>() as u64,
|
align_of::<Vertex>() as u64,
|
||||||
|
@ -266,7 +271,8 @@ fn main() {
|
||||||
&uniform_color_buffer_memory_req,
|
&uniform_color_buffer_memory_req,
|
||||||
&base.device_memory_properties,
|
&base.device_memory_properties,
|
||||||
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
||||||
).expect("Unable to find suitable memorytype for the vertex buffer.");
|
)
|
||||||
|
.expect("Unable to find suitable memorytype for the vertex buffer.");
|
||||||
|
|
||||||
let uniform_color_buffer_allocate_info = vk::MemoryAllocateInfo {
|
let uniform_color_buffer_allocate_info = vk::MemoryAllocateInfo {
|
||||||
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
||||||
|
@ -285,7 +291,8 @@ fn main() {
|
||||||
0,
|
0,
|
||||||
uniform_color_buffer_memory_req.size,
|
uniform_color_buffer_memory_req.size,
|
||||||
vk::MemoryMapFlags::empty(),
|
vk::MemoryMapFlags::empty(),
|
||||||
).unwrap();
|
)
|
||||||
|
.unwrap();
|
||||||
let mut uniform_aligned_slice = Align::new(
|
let mut uniform_aligned_slice = Align::new(
|
||||||
uniform_ptr,
|
uniform_ptr,
|
||||||
align_of::<Vector3>() as u64,
|
align_of::<Vector3>() as u64,
|
||||||
|
@ -316,7 +323,8 @@ fn main() {
|
||||||
&image_buffer_memory_req,
|
&image_buffer_memory_req,
|
||||||
&base.device_memory_properties,
|
&base.device_memory_properties,
|
||||||
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
||||||
).expect("Unable to find suitable memorytype for the vertex buffer.");
|
)
|
||||||
|
.expect("Unable to find suitable memorytype for the vertex buffer.");
|
||||||
|
|
||||||
let image_buffer_allocate_info = vk::MemoryAllocateInfo {
|
let image_buffer_allocate_info = vk::MemoryAllocateInfo {
|
||||||
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
||||||
|
@ -335,7 +343,8 @@ fn main() {
|
||||||
0,
|
0,
|
||||||
image_buffer_memory_req.size,
|
image_buffer_memory_req.size,
|
||||||
vk::MemoryMapFlags::empty(),
|
vk::MemoryMapFlags::empty(),
|
||||||
).unwrap();
|
)
|
||||||
|
.unwrap();
|
||||||
let mut image_slice = Align::new(
|
let mut image_slice = Align::new(
|
||||||
image_ptr,
|
image_ptr,
|
||||||
std::mem::align_of::<u8>() as u64,
|
std::mem::align_of::<u8>() as u64,
|
||||||
|
@ -377,7 +386,8 @@ fn main() {
|
||||||
&texture_memory_req,
|
&texture_memory_req,
|
||||||
&base.device_memory_properties,
|
&base.device_memory_properties,
|
||||||
vk::MemoryPropertyFlags::DEVICE_LOCAL,
|
vk::MemoryPropertyFlags::DEVICE_LOCAL,
|
||||||
).expect("Unable to find suitable memory index for depth image.");
|
)
|
||||||
|
.expect("Unable to find suitable memory index for depth image.");
|
||||||
|
|
||||||
let texture_allocate_info = vk::MemoryAllocateInfo {
|
let texture_allocate_info = vk::MemoryAllocateInfo {
|
||||||
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
||||||
|
@ -872,7 +882,8 @@ fn main() {
|
||||||
std::u64::MAX,
|
std::u64::MAX,
|
||||||
base.present_complete_semaphore,
|
base.present_complete_semaphore,
|
||||||
vk::Fence::null(),
|
vk::Fence::null(),
|
||||||
).unwrap();
|
)
|
||||||
|
.unwrap();
|
||||||
let clear_values = [
|
let clear_values = [
|
||||||
vk::ClearValue {
|
vk::ClearValue {
|
||||||
color: vk::ClearColorValue {
|
color: vk::ClearColorValue {
|
||||||
|
|
|
@ -110,7 +110,8 @@ fn main() {
|
||||||
base.device
|
base.device
|
||||||
.create_framebuffer(&frame_buffer_create_info, None)
|
.create_framebuffer(&frame_buffer_create_info, None)
|
||||||
.unwrap()
|
.unwrap()
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
let index_buffer_data = [0u32, 1, 2];
|
let index_buffer_data = [0u32, 1, 2];
|
||||||
let index_buffer_info = vk::BufferCreateInfo {
|
let index_buffer_info = vk::BufferCreateInfo {
|
||||||
s_type: vk::StructureType::BUFFER_CREATE_INFO,
|
s_type: vk::StructureType::BUFFER_CREATE_INFO,
|
||||||
|
@ -128,7 +129,8 @@ fn main() {
|
||||||
&index_buffer_memory_req,
|
&index_buffer_memory_req,
|
||||||
&base.device_memory_properties,
|
&base.device_memory_properties,
|
||||||
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
||||||
).expect("Unable to find suitable memorytype for the index buffer.");
|
)
|
||||||
|
.expect("Unable to find suitable memorytype for the index buffer.");
|
||||||
let index_allocate_info = vk::MemoryAllocateInfo {
|
let index_allocate_info = vk::MemoryAllocateInfo {
|
||||||
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
||||||
p_next: ptr::null(),
|
p_next: ptr::null(),
|
||||||
|
@ -146,7 +148,8 @@ fn main() {
|
||||||
0,
|
0,
|
||||||
index_buffer_memory_req.size,
|
index_buffer_memory_req.size,
|
||||||
vk::MemoryMapFlags::empty(),
|
vk::MemoryMapFlags::empty(),
|
||||||
).unwrap();
|
)
|
||||||
|
.unwrap();
|
||||||
let mut index_slice = Align::new(
|
let mut index_slice = Align::new(
|
||||||
index_ptr,
|
index_ptr,
|
||||||
align_of::<u32>() as u64,
|
align_of::<u32>() as u64,
|
||||||
|
@ -179,7 +182,8 @@ fn main() {
|
||||||
&vertex_input_buffer_memory_req,
|
&vertex_input_buffer_memory_req,
|
||||||
&base.device_memory_properties,
|
&base.device_memory_properties,
|
||||||
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
vk::MemoryPropertyFlags::HOST_VISIBLE,
|
||||||
).expect("Unable to find suitable memorytype for the vertex buffer.");
|
)
|
||||||
|
.expect("Unable to find suitable memorytype for the vertex buffer.");
|
||||||
|
|
||||||
let vertex_buffer_allocate_info = vk::MemoryAllocateInfo {
|
let vertex_buffer_allocate_info = vk::MemoryAllocateInfo {
|
||||||
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
||||||
|
@ -212,7 +216,8 @@ fn main() {
|
||||||
0,
|
0,
|
||||||
vertex_input_buffer_memory_req.size,
|
vertex_input_buffer_memory_req.size,
|
||||||
vk::MemoryMapFlags::empty(),
|
vk::MemoryMapFlags::empty(),
|
||||||
).unwrap();
|
)
|
||||||
|
.unwrap();
|
||||||
let mut vert_align = Align::new(
|
let mut vert_align = Align::new(
|
||||||
vert_ptr,
|
vert_ptr,
|
||||||
align_of::<Vertex>() as u64,
|
align_of::<Vertex>() as u64,
|
||||||
|
@ -462,7 +467,8 @@ fn main() {
|
||||||
std::u64::MAX,
|
std::u64::MAX,
|
||||||
base.present_complete_semaphore,
|
base.present_complete_semaphore,
|
||||||
vk::Fence::null(),
|
vk::Fence::null(),
|
||||||
).unwrap();
|
)
|
||||||
|
.unwrap();
|
||||||
let clear_values = [
|
let clear_values = [
|
||||||
vk::ClearValue {
|
vk::ClearValue {
|
||||||
color: vk::ClearColorValue {
|
color: vk::ClearColorValue {
|
||||||
|
|
|
@ -67,7 +67,8 @@ pub fn record_submit_commandbuffer<D: DeviceV1_0, F: FnOnce(&D, vk::CommandBuffe
|
||||||
.reset_command_buffer(
|
.reset_command_buffer(
|
||||||
command_buffer,
|
command_buffer,
|
||||||
vk::CommandBufferResetFlags::RELEASE_RESOURCES,
|
vk::CommandBufferResetFlags::RELEASE_RESOURCES,
|
||||||
).expect("Reset command buffer failed.");
|
)
|
||||||
|
.expect("Reset command buffer failed.");
|
||||||
let command_buffer_begin_info = vk::CommandBufferBeginInfo {
|
let command_buffer_begin_info = vk::CommandBufferBeginInfo {
|
||||||
s_type: vk::StructureType::COMMAND_BUFFER_BEGIN_INFO,
|
s_type: vk::StructureType::COMMAND_BUFFER_BEGIN_INFO,
|
||||||
p_next: ptr::null(),
|
p_next: ptr::null(),
|
||||||
|
@ -330,7 +331,8 @@ impl ExampleBase {
|
||||||
.with_dimensions(winit::dpi::LogicalSize::new(
|
.with_dimensions(winit::dpi::LogicalSize::new(
|
||||||
window_width as f64,
|
window_width as f64,
|
||||||
window_height as f64,
|
window_height as f64,
|
||||||
)).build(&events_loop)
|
))
|
||||||
|
.build(&events_loop)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let entry = Entry::new().unwrap();
|
let entry = Entry::new().unwrap();
|
||||||
let app_name = CString::new("VulkanTriangle").unwrap();
|
let app_name = CString::new("VulkanTriangle").unwrap();
|
||||||
|
@ -402,8 +404,10 @@ impl ExampleBase {
|
||||||
true => Some((*pdevice, index)),
|
true => Some((*pdevice, index)),
|
||||||
_ => None,
|
_ => None,
|
||||||
}
|
}
|
||||||
}).nth(0)
|
})
|
||||||
}).filter_map(|v| v)
|
.nth(0)
|
||||||
|
})
|
||||||
|
.filter_map(|v| v)
|
||||||
.nth(0)
|
.nth(0)
|
||||||
.expect("Couldn't find suitable device.");
|
.expect("Couldn't find suitable device.");
|
||||||
let queue_family_index = queue_family_index as u32;
|
let queue_family_index = queue_family_index as u32;
|
||||||
|
@ -449,7 +453,8 @@ impl ExampleBase {
|
||||||
color_space: sfmt.color_space,
|
color_space: sfmt.color_space,
|
||||||
},
|
},
|
||||||
_ => sfmt.clone(),
|
_ => sfmt.clone(),
|
||||||
}).nth(0)
|
})
|
||||||
|
.nth(0)
|
||||||
.expect("Unable to find suitable surface format.");
|
.expect("Unable to find suitable surface format.");
|
||||||
let surface_capabilities = surface_loader
|
let surface_capabilities = surface_loader
|
||||||
.get_physical_device_surface_capabilities(pdevice, surface)
|
.get_physical_device_surface_capabilities(pdevice, surface)
|
||||||
|
@ -553,7 +558,8 @@ impl ExampleBase {
|
||||||
image: image,
|
image: image,
|
||||||
};
|
};
|
||||||
device.create_image_view(&create_view_info, None).unwrap()
|
device.create_image_view(&create_view_info, None).unwrap()
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
let device_memory_properties = instance.get_physical_device_memory_properties(pdevice);
|
let device_memory_properties = instance.get_physical_device_memory_properties(pdevice);
|
||||||
let depth_image_create_info = vk::ImageCreateInfo {
|
let depth_image_create_info = vk::ImageCreateInfo {
|
||||||
s_type: vk::StructureType::IMAGE_CREATE_INFO,
|
s_type: vk::StructureType::IMAGE_CREATE_INFO,
|
||||||
|
@ -582,7 +588,8 @@ impl ExampleBase {
|
||||||
&depth_image_memory_req,
|
&depth_image_memory_req,
|
||||||
&device_memory_properties,
|
&device_memory_properties,
|
||||||
vk::MemoryPropertyFlags::DEVICE_LOCAL,
|
vk::MemoryPropertyFlags::DEVICE_LOCAL,
|
||||||
).expect("Unable to find suitable memory index for depth image.");
|
)
|
||||||
|
.expect("Unable to find suitable memory index for depth image.");
|
||||||
|
|
||||||
let depth_image_allocate_info = vk::MemoryAllocateInfo {
|
let depth_image_allocate_info = vk::MemoryAllocateInfo {
|
||||||
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
s_type: vk::StructureType::MEMORY_ALLOCATE_INFO,
|
||||||
|
|
|
@ -36,7 +36,7 @@ impl CType {
|
||||||
CType::Float => Term::intern("f32"),
|
CType::Float => Term::intern("f32"),
|
||||||
CType::Bool32 => Term::intern("Bool32"),
|
CType::Bool32 => Term::intern("Bool32"),
|
||||||
};
|
};
|
||||||
quote!{#term}
|
quote! {#term}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -131,7 +131,7 @@ pub fn define_handle_macro() -> Tokens {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn handle_nondispatchable_macro() -> Tokens {
|
pub fn handle_nondispatchable_macro() -> Tokens {
|
||||||
quote!{
|
quote! {
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! handle_nondispatchable {
|
macro_rules! handle_nondispatchable {
|
||||||
($name: ident, $ty: ident) => {
|
($name: ident, $ty: ident) => {
|
||||||
|
@ -167,7 +167,7 @@ pub fn handle_nondispatchable_macro() -> Tokens {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn vk_version_macros() -> Tokens {
|
pub fn vk_version_macros() -> Tokens {
|
||||||
quote!{
|
quote! {
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! vk_make_version {
|
macro_rules! vk_make_version {
|
||||||
($major:expr, $minor:expr, $patch:expr) => {
|
($major:expr, $minor:expr, $patch:expr) => {
|
||||||
|
@ -198,7 +198,7 @@ pub fn vk_version_macros() -> Tokens {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn vk_bitflags_wrapped_macro() -> Tokens {
|
pub fn vk_bitflags_wrapped_macro() -> Tokens {
|
||||||
quote!{
|
quote! {
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! vk_bitflags_wrapped {
|
macro_rules! vk_bitflags_wrapped {
|
||||||
($name: ident, $all: expr, $flag_type: ty) => {
|
($name: ident, $all: expr, $flag_type: ty) => {
|
||||||
|
@ -454,24 +454,24 @@ impl Constant {
|
||||||
match *self {
|
match *self {
|
||||||
Constant::Number(n) => {
|
Constant::Number(n) => {
|
||||||
let term = Term::intern(&n.to_string());
|
let term = Term::intern(&n.to_string());
|
||||||
quote!{#term}
|
quote! {#term}
|
||||||
}
|
}
|
||||||
Constant::Hex(ref s) => {
|
Constant::Hex(ref s) => {
|
||||||
let term = Term::intern(&format!("0x{}", s));
|
let term = Term::intern(&format!("0x{}", s));
|
||||||
quote!{#term}
|
quote! {#term}
|
||||||
}
|
}
|
||||||
Constant::Text(ref text) => {
|
Constant::Text(ref text) => {
|
||||||
quote!{#text}
|
quote! {#text}
|
||||||
}
|
}
|
||||||
Constant::CExpr(ref expr) => {
|
Constant::CExpr(ref expr) => {
|
||||||
let (_, (_, rexpr)) = cexpr(expr).expect("Unable to parse cexpr");
|
let (_, (_, rexpr)) = cexpr(expr).expect("Unable to parse cexpr");
|
||||||
let term = Term::intern(rexpr.as_str());
|
let term = Term::intern(rexpr.as_str());
|
||||||
quote!{#term}
|
quote! {#term}
|
||||||
}
|
}
|
||||||
Constant::BitPos(pos) => {
|
Constant::BitPos(pos) => {
|
||||||
let value = 1 << pos;
|
let value = 1 << pos;
|
||||||
let term = Term::intern(&format!("0b{:b}", value));
|
let term = Term::intern(&format!("0b{:b}", value));
|
||||||
quote!{#term}
|
quote! {#term}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -539,7 +539,8 @@ impl CommandExt for vkxml::Command {
|
||||||
.map(|field| match field.basetype.as_str() {
|
.map(|field| match field.basetype.as_str() {
|
||||||
"VkDevice" | "VkCommandBuffer" | "VkQueue" => true,
|
"VkDevice" | "VkCommandBuffer" | "VkQueue" => true,
|
||||||
_ => false,
|
_ => false,
|
||||||
}).unwrap_or(false);
|
})
|
||||||
|
.unwrap_or(false);
|
||||||
match self.name.as_str() {
|
match self.name.as_str() {
|
||||||
"vkGetInstanceProcAddr" => FunctionType::Static,
|
"vkGetInstanceProcAddr" => FunctionType::Static,
|
||||||
"vkCreateInstance"
|
"vkCreateInstance"
|
||||||
|
@ -592,7 +593,7 @@ impl ToTokens for vkxml::ReferenceType {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let ident = Term::intern(ptr_name);
|
let ident = Term::intern(ptr_name);
|
||||||
quote!{
|
quote! {
|
||||||
#ident
|
#ident
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -626,8 +627,8 @@ fn name_to_tokens(type_name: &str) -> Ident {
|
||||||
}
|
}
|
||||||
fn to_type_tokens(type_name: &str, reference: Option<&vkxml::ReferenceType>) -> Tokens {
|
fn to_type_tokens(type_name: &str, reference: Option<&vkxml::ReferenceType>) -> Tokens {
|
||||||
let new_name = name_to_tokens(type_name);
|
let new_name = name_to_tokens(type_name);
|
||||||
let ptr_name = reference.map(|r| r.to_tokens(false)).unwrap_or(quote!{});
|
let ptr_name = reference.map(|r| r.to_tokens(false)).unwrap_or(quote! {});
|
||||||
quote!{#ptr_name #new_name}
|
quote! {#ptr_name #new_name}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl FieldExt for vkxml::Field {
|
impl FieldExt for vkxml::Field {
|
||||||
|
@ -649,8 +650,8 @@ impl FieldExt for vkxml::Field {
|
||||||
.reference
|
.reference
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.map(|r| r.to_tokens(self.is_const))
|
.map(|r| r.to_tokens(self.is_const))
|
||||||
.unwrap_or(quote!{});
|
.unwrap_or(quote! {});
|
||||||
let pointer_ty = quote!{
|
let pointer_ty = quote! {
|
||||||
#pointer #ty
|
#pointer #ty
|
||||||
};
|
};
|
||||||
let array = self.array.as_ref().and_then(|arraytype| match arraytype {
|
let array = self.array.as_ref().and_then(|arraytype| match arraytype {
|
||||||
|
@ -664,7 +665,7 @@ impl FieldExt for vkxml::Field {
|
||||||
// used inside the static array
|
// used inside the static array
|
||||||
let size = constant_name(size);
|
let size = constant_name(size);
|
||||||
let size = Term::intern(&size);
|
let size = Term::intern(&size);
|
||||||
Some(quote!{
|
Some(quote! {
|
||||||
[#ty; #size]
|
[#ty; #size]
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -704,7 +705,8 @@ fn generate_function_pointers<'a>(
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
let params: Vec<Vec<(Ident, Tokens)>> = commands
|
let params: Vec<Vec<(Ident, Tokens)>> = commands
|
||||||
.iter()
|
.iter()
|
||||||
|
@ -716,9 +718,11 @@ fn generate_function_pointers<'a>(
|
||||||
let name = field.param_ident();
|
let name = field.param_ident();
|
||||||
let ty = field.type_tokens();
|
let ty = field.type_tokens();
|
||||||
(name, ty)
|
(name, ty)
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
params
|
params
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
let params_names: Vec<Vec<_>> = params
|
let params_names: Vec<Vec<_>> = params
|
||||||
.iter()
|
.iter()
|
||||||
|
@ -727,29 +731,32 @@ fn generate_function_pointers<'a>(
|
||||||
.iter()
|
.iter()
|
||||||
.map(|&(param_name, _)| param_name)
|
.map(|&(param_name, _)| param_name)
|
||||||
.collect()
|
.collect()
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
let param_names_ref = ¶ms_names;
|
let param_names_ref = ¶ms_names;
|
||||||
let expanded_params: Vec<_> = params
|
let expanded_params: Vec<_> = params
|
||||||
.iter()
|
.iter()
|
||||||
.map(|inner_params| {
|
.map(|inner_params| {
|
||||||
let inner_params_iter = inner_params.iter().map(|&(ref param_name, ref param_ty)| {
|
let inner_params_iter = inner_params.iter().map(|&(ref param_name, ref param_ty)| {
|
||||||
quote!{#param_name: #param_ty}
|
quote! {#param_name: #param_ty}
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
#(#inner_params_iter,)*
|
#(#inner_params_iter,)*
|
||||||
}
|
}
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
let expanded_params_unused: Vec<_> = params
|
let expanded_params_unused: Vec<_> = params
|
||||||
.iter()
|
.iter()
|
||||||
.map(|inner_params| {
|
.map(|inner_params| {
|
||||||
let inner_params_iter = inner_params.iter().map(|&(ref param_name, ref param_ty)| {
|
let inner_params_iter = inner_params.iter().map(|&(ref param_name, ref param_ty)| {
|
||||||
let unused_name = Ident::from(format!("_{}", param_name).as_str());
|
let unused_name = Ident::from(format!("_{}", param_name).as_str());
|
||||||
quote!{#unused_name: #param_ty}
|
quote! {#unused_name: #param_ty}
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
#(#inner_params_iter,)*
|
#(#inner_params_iter,)*
|
||||||
}
|
}
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
let expanded_params_ref = &expanded_params;
|
let expanded_params_ref = &expanded_params;
|
||||||
|
|
||||||
let return_types: Vec<_> = commands
|
let return_types: Vec<_> = commands
|
||||||
|
@ -774,9 +781,11 @@ fn generate_function_pointers<'a>(
|
||||||
let name = field.param_ident();
|
let name = field.param_ident();
|
||||||
let ty = field.type_tokens();
|
let ty = field.type_tokens();
|
||||||
quote! { #name: #ty }
|
quote! { #name: #ty }
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
params
|
params
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
let signature_params_ref = &signature_params;
|
let signature_params_ref = &signature_params;
|
||||||
|
|
||||||
let pfn_return_types: Vec<_> = pfn_commands
|
let pfn_return_types: Vec<_> = pfn_commands
|
||||||
|
@ -785,7 +794,7 @@ fn generate_function_pointers<'a>(
|
||||||
.collect();
|
.collect();
|
||||||
let pfn_return_types_ref = &pfn_return_types;
|
let pfn_return_types_ref = &pfn_return_types;
|
||||||
|
|
||||||
quote!{
|
quote! {
|
||||||
#(
|
#(
|
||||||
#[allow(non_camel_case_types)]
|
#[allow(non_camel_case_types)]
|
||||||
pub type #pfn_names_ref = extern "system" fn(#(#signature_params_ref),*) -> #pfn_return_types_ref;
|
pub type #pfn_names_ref = extern "system" fn(#(#signature_params_ref),*) -> #pfn_return_types_ref;
|
||||||
|
@ -867,7 +876,8 @@ pub fn generate_extension_constants<'a>(
|
||||||
.filter_map(|item| match item {
|
.filter_map(|item| match item {
|
||||||
vk_parse::ExtensionChild::Require { items, .. } => Some(items.iter()),
|
vk_parse::ExtensionChild::Require { items, .. } => Some(items.iter()),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).flat_map(|iter| iter);
|
})
|
||||||
|
.flat_map(|iter| iter);
|
||||||
let enum_tokens = items.filter_map(|item| match item {
|
let enum_tokens = items.filter_map(|item| match item {
|
||||||
vk_parse::InterfaceItem::Enum(_enum) => {
|
vk_parse::InterfaceItem::Enum(_enum) => {
|
||||||
use vk_parse::EnumSpec;
|
use vk_parse::EnumSpec;
|
||||||
|
@ -905,7 +915,7 @@ pub fn generate_extension_constants<'a>(
|
||||||
.push(ext_constant.variant_ident(&extends));
|
.push(ext_constant.variant_ident(&extends));
|
||||||
let impl_block = bitflags_impl_block(ident, &extends, &[&ext_constant]);
|
let impl_block = bitflags_impl_block(ident, &extends, &[&ext_constant]);
|
||||||
let doc_string = format!("Generated from '{}'", extension_name);
|
let doc_string = format!("Generated from '{}'", extension_name);
|
||||||
let q = quote!{
|
let q = quote! {
|
||||||
#[doc = #doc_string]
|
#[doc = #doc_string]
|
||||||
#impl_block
|
#impl_block
|
||||||
};
|
};
|
||||||
|
@ -915,7 +925,7 @@ pub fn generate_extension_constants<'a>(
|
||||||
}
|
}
|
||||||
_ => None,
|
_ => None,
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
#(#enum_tokens)*
|
#(#enum_tokens)*
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -937,7 +947,8 @@ pub fn generate_extension_commands<'a>(
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
_ => None,
|
_ => None,
|
||||||
}).flat_map(|iter| iter)
|
})
|
||||||
|
.flat_map(|iter| iter)
|
||||||
.collect_vec();
|
.collect_vec();
|
||||||
let name = format!("{}Fn", extension_name.to_camel_case());
|
let name = format!("{}Fn", extension_name.to_camel_case());
|
||||||
let ident = Ident::from(&name[2..]);
|
let ident = Ident::from(&name[2..]);
|
||||||
|
@ -964,7 +975,7 @@ pub fn generate_extension<'a>(
|
||||||
const_values,
|
const_values,
|
||||||
);
|
);
|
||||||
let fp = generate_extension_commands(&extension.name, &extension.children, cmd_map, fn_cache);
|
let fp = generate_extension_commands(&extension.name, &extension.children, cmd_map, fn_cache);
|
||||||
let q = quote!{
|
let q = quote! {
|
||||||
#fp
|
#fp
|
||||||
#extension_tokens
|
#extension_tokens
|
||||||
};
|
};
|
||||||
|
@ -973,7 +984,7 @@ pub fn generate_extension<'a>(
|
||||||
pub fn generate_typedef(typedef: &vkxml::Typedef) -> Tokens {
|
pub fn generate_typedef(typedef: &vkxml::Typedef) -> Tokens {
|
||||||
let typedef_name = to_type_tokens(&typedef.name, None);
|
let typedef_name = to_type_tokens(&typedef.name, None);
|
||||||
let typedef_ty = to_type_tokens(&typedef.basetype, None);
|
let typedef_ty = to_type_tokens(&typedef.basetype, None);
|
||||||
quote!{
|
quote! {
|
||||||
pub type #typedef_name = #typedef_ty;
|
pub type #typedef_name = #typedef_ty;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -996,7 +1007,7 @@ pub fn generate_bitmask(
|
||||||
return None;
|
return None;
|
||||||
};
|
};
|
||||||
bitflags_cache.insert(ident.clone());
|
bitflags_cache.insert(ident.clone());
|
||||||
Some(quote!{
|
Some(quote! {
|
||||||
#[repr(transparent)]
|
#[repr(transparent)]
|
||||||
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
pub struct #ident(Flags);
|
pub struct #ident(Flags);
|
||||||
|
@ -1051,11 +1062,12 @@ pub fn bitflags_impl_block(
|
||||||
let variant_ident = constant.variant_ident(enum_name);
|
let variant_ident = constant.variant_ident(enum_name);
|
||||||
let tokens = constant.to_tokens();
|
let tokens = constant.to_tokens();
|
||||||
(variant_ident, tokens)
|
(variant_ident, tokens)
|
||||||
}).collect_vec();
|
})
|
||||||
|
.collect_vec();
|
||||||
|
|
||||||
let notations = constants.iter().map(|constant| {
|
let notations = constants.iter().map(|constant| {
|
||||||
constant.notation().map(|n| {
|
constant.notation().map(|n| {
|
||||||
quote!{
|
quote! {
|
||||||
#[doc = #n]
|
#[doc = #n]
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -1066,12 +1078,12 @@ pub fn bitflags_impl_block(
|
||||||
.iter()
|
.iter()
|
||||||
.zip(notations.clone())
|
.zip(notations.clone())
|
||||||
.map(|((variant_ident, value), ref notation)| {
|
.map(|((variant_ident, value), ref notation)| {
|
||||||
quote!{
|
quote! {
|
||||||
#notation
|
#notation
|
||||||
pub const #variant_ident: Self = #ident(#value);
|
pub const #variant_ident: Self = #ident(#value);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
impl #ident {
|
impl #ident {
|
||||||
#(#variants)*
|
#(#variants)*
|
||||||
}
|
}
|
||||||
|
@ -1093,7 +1105,8 @@ pub fn generate_enum<'a>(
|
||||||
.filter_map(|elem| match *elem {
|
.filter_map(|elem| match *elem {
|
||||||
vkxml::EnumerationElement::Enum(ref constant) => Some(constant),
|
vkxml::EnumerationElement::Enum(ref constant) => Some(constant),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).collect_vec();
|
})
|
||||||
|
.collect_vec();
|
||||||
let values = const_values.entry(ident.clone()).or_insert_with(Vec::new);
|
let values = const_values.entry(ident.clone()).or_insert_with(Vec::new);
|
||||||
for constant in &constants {
|
for constant in &constants {
|
||||||
const_cache.insert(constant.name.as_str());
|
const_cache.insert(constant.name.as_str());
|
||||||
|
@ -1110,10 +1123,10 @@ pub fn generate_enum<'a>(
|
||||||
|
|
||||||
let impl_bitflags = bitflags_impl_block(ident, &_enum.name, &constants);
|
let impl_bitflags = bitflags_impl_block(ident, &_enum.name, &constants);
|
||||||
if bitflags_cache.contains(&ident) {
|
if bitflags_cache.contains(&ident) {
|
||||||
EnumType::Bitflags(quote!{})
|
EnumType::Bitflags(quote! {})
|
||||||
} else {
|
} else {
|
||||||
bitflags_cache.insert(ident.clone());
|
bitflags_cache.insert(ident.clone());
|
||||||
let q = quote!{
|
let q = quote! {
|
||||||
#[repr(transparent)]
|
#[repr(transparent)]
|
||||||
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
pub struct #ident(pub(crate) Flags);
|
pub struct #ident(pub(crate) Flags);
|
||||||
|
@ -1124,7 +1137,7 @@ pub fn generate_enum<'a>(
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let impl_block = bitflags_impl_block(ident, &_enum.name, &constants);
|
let impl_block = bitflags_impl_block(ident, &_enum.name, &constants);
|
||||||
let enum_quote = quote!{
|
let enum_quote = quote! {
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
|
||||||
#[repr(transparent)]
|
#[repr(transparent)]
|
||||||
pub struct #ident(pub(crate) i32);
|
pub struct #ident(pub(crate) i32);
|
||||||
|
@ -1138,10 +1151,10 @@ pub fn generate_enum<'a>(
|
||||||
//"StructureType" => generate_structure_type(&_name, _enum, create_info_constants),
|
//"StructureType" => generate_structure_type(&_name, _enum, create_info_constants),
|
||||||
"Result" => generate_result(ident, _enum),
|
"Result" => generate_result(ident, _enum),
|
||||||
_ => {
|
_ => {
|
||||||
quote!{}
|
quote! {}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let q = quote!{
|
let q = quote! {
|
||||||
#enum_quote
|
#enum_quote
|
||||||
#special_quote
|
#special_quote
|
||||||
|
|
||||||
|
@ -1163,13 +1176,13 @@ pub fn generate_result(ident: Ident, _enum: &vkxml::Enumeration) -> Tokens {
|
||||||
};
|
};
|
||||||
|
|
||||||
let variant_ident = variant_ident(&_enum.name, variant_name);
|
let variant_ident = variant_ident(&_enum.name, variant_name);
|
||||||
Some(quote!{
|
Some(quote! {
|
||||||
#ident::#variant_ident => Some(#notation)
|
#ident::#variant_ident => Some(#notation)
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
let notation2 = notation.clone();
|
let notation2 = notation.clone();
|
||||||
quote!{
|
quote! {
|
||||||
impl ::std::error::Error for #ident {
|
impl ::std::error::Error for #ident {
|
||||||
fn description(&self) -> &str {
|
fn description(&self) -> &str {
|
||||||
let name = match *self {
|
let name = match *self {
|
||||||
|
@ -1202,7 +1215,8 @@ fn is_static_array(field: &vkxml::Field) -> bool {
|
||||||
.map(|ty| match ty {
|
.map(|ty| match ty {
|
||||||
vkxml::ArrayType::Static => true,
|
vkxml::ArrayType::Static => true,
|
||||||
_ => false,
|
_ => false,
|
||||||
}).unwrap_or(false)
|
})
|
||||||
|
.unwrap_or(false)
|
||||||
}
|
}
|
||||||
pub fn derive_default(_struct: &vkxml::Struct) -> Option<Tokens> {
|
pub fn derive_default(_struct: &vkxml::Struct) -> Option<Tokens> {
|
||||||
let name = name_to_tokens(&_struct.name);
|
let name = name_to_tokens(&_struct.name);
|
||||||
|
@ -1231,11 +1245,11 @@ pub fn derive_default(_struct: &vkxml::Struct) -> Option<Tokens> {
|
||||||
if let Some(variant) = ty {
|
if let Some(variant) = ty {
|
||||||
let variant_ident = variant_ident("VkStructureType", variant);
|
let variant_ident = variant_ident("VkStructureType", variant);
|
||||||
|
|
||||||
quote!{
|
quote! {
|
||||||
#param_ident: StructureType::#variant_ident
|
#param_ident: StructureType::#variant_ident
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
quote!{
|
quote! {
|
||||||
#param_ident: unsafe { ::std::mem::zeroed() }
|
#param_ident: unsafe { ::std::mem::zeroed() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1243,44 +1257,44 @@ pub fn derive_default(_struct: &vkxml::Struct) -> Option<Tokens> {
|
||||||
match reference {
|
match reference {
|
||||||
vkxml::ReferenceType::Pointer => {
|
vkxml::ReferenceType::Pointer => {
|
||||||
if field.is_const {
|
if field.is_const {
|
||||||
quote!{
|
quote! {
|
||||||
#param_ident: ::std::ptr::null()
|
#param_ident: ::std::ptr::null()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
quote!{
|
quote! {
|
||||||
#param_ident: ::std::ptr::null_mut()
|
#param_ident: ::std::ptr::null_mut()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
vkxml::ReferenceType::PointerToPointer => {
|
vkxml::ReferenceType::PointerToPointer => {
|
||||||
quote!{
|
quote! {
|
||||||
#param_ident: ::std::ptr::null_mut()
|
#param_ident: ::std::ptr::null_mut()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
vkxml::ReferenceType::PointerToConstPointer => {
|
vkxml::ReferenceType::PointerToConstPointer => {
|
||||||
if field.is_const {
|
if field.is_const {
|
||||||
quote!{
|
quote! {
|
||||||
#param_ident: ::std::ptr::null()
|
#param_ident: ::std::ptr::null()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
quote!{
|
quote! {
|
||||||
#param_ident: ::std::ptr::null_mut()
|
#param_ident: ::std::ptr::null_mut()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if is_static_array(field) || handles.contains(&field.basetype.as_str()) {
|
} else if is_static_array(field) || handles.contains(&field.basetype.as_str()) {
|
||||||
quote!{
|
quote! {
|
||||||
#param_ident: unsafe { ::std::mem::zeroed() }
|
#param_ident: unsafe { ::std::mem::zeroed() }
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let ty = field.type_tokens();
|
let ty = field.type_tokens();
|
||||||
quote!{
|
quote! {
|
||||||
#param_ident: #ty::default()
|
#param_ident: #ty::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
let q = quote!{
|
let q = quote! {
|
||||||
impl ::std::default::Default for #name {
|
impl ::std::default::Default for #name {
|
||||||
fn default() -> #name {
|
fn default() -> #name {
|
||||||
#name {
|
#name {
|
||||||
|
@ -1319,28 +1333,28 @@ pub fn derive_debug(_struct: &vkxml::Struct, union_types: &HashSet<&str>) -> Opt
|
||||||
let param_ident = field.param_ident();
|
let param_ident = field.param_ident();
|
||||||
let param_str = param_ident.as_ref();
|
let param_str = param_ident.as_ref();
|
||||||
let debug_value = if is_static_array(field) && field.basetype == "char" {
|
let debug_value = if is_static_array(field) && field.basetype == "char" {
|
||||||
quote!{
|
quote! {
|
||||||
&unsafe {
|
&unsafe {
|
||||||
::std::ffi::CStr::from_ptr(self.#param_ident.as_ptr() as *const i8)
|
::std::ffi::CStr::from_ptr(self.#param_ident.as_ptr() as *const i8)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if param_ident.as_ref().contains("pfn") {
|
} else if param_ident.as_ref().contains("pfn") {
|
||||||
quote!{
|
quote! {
|
||||||
&(self.#param_ident.map(|x| x as *const ()))
|
&(self.#param_ident.map(|x| x as *const ()))
|
||||||
}
|
}
|
||||||
} else if union_types.contains(field.basetype.as_str()) {
|
} else if union_types.contains(field.basetype.as_str()) {
|
||||||
quote!(&"union")
|
quote!(&"union")
|
||||||
} else {
|
} else {
|
||||||
quote!{
|
quote! {
|
||||||
&self.#param_ident
|
&self.#param_ident
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
quote!{
|
quote! {
|
||||||
.field(#param_str, #debug_value)
|
.field(#param_str, #debug_value)
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
let name_str = name.as_ref();
|
let name_str = name.as_ref();
|
||||||
let q = quote!{
|
let q = quote! {
|
||||||
impl fmt::Debug for #name {
|
impl fmt::Debug for #name {
|
||||||
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
||||||
fmt.debug_struct(#name_str)
|
fmt.debug_struct(#name_str)
|
||||||
|
@ -1369,11 +1383,13 @@ pub fn derive_setters(_struct: &vkxml::Struct) -> Option<Tokens> {
|
||||||
.clone()
|
.clone()
|
||||||
.find(|field| field.param_ident().to_string() == "p_next")
|
.find(|field| field.param_ident().to_string() == "p_next")
|
||||||
{
|
{
|
||||||
Some(p_next) => if p_next.type_tokens().to_string().starts_with("*const") {
|
Some(p_next) => {
|
||||||
(true, true)
|
if p_next.type_tokens().to_string().starts_with("*const") {
|
||||||
} else {
|
(true, true)
|
||||||
(true, false)
|
} else {
|
||||||
},
|
(true, false)
|
||||||
|
}
|
||||||
|
}
|
||||||
None => (false, false),
|
None => (false, false),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1390,9 +1406,10 @@ pub fn derive_setters(_struct: &vkxml::Struct) -> Option<Tokens> {
|
||||||
// Associated _count members
|
// Associated _count members
|
||||||
if field.array.is_some() {
|
if field.array.is_some() {
|
||||||
if let Some(ref array_size) = field.size {
|
if let Some(ref array_size) = field.size {
|
||||||
if !array_size.starts_with("latexmath") && !nofilter_count_members
|
if !array_size.starts_with("latexmath")
|
||||||
.iter()
|
&& !nofilter_count_members
|
||||||
.any(|n| *n == &(_struct.name.clone() + "." + field_name))
|
.iter()
|
||||||
|
.any(|n| *n == &(_struct.name.clone() + "." + field_name))
|
||||||
{
|
{
|
||||||
return Some((*array_size).clone());
|
return Some((*array_size).clone());
|
||||||
}
|
}
|
||||||
|
@ -1405,7 +1422,8 @@ pub fn derive_setters(_struct: &vkxml::Struct) -> Option<Tokens> {
|
||||||
}
|
}
|
||||||
|
|
||||||
None
|
None
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
let setters = members.clone().filter_map(|field| {
|
let setters = members.clone().filter_map(|field| {
|
||||||
let param_ident = field.param_ident();
|
let param_ident = field.param_ident();
|
||||||
|
@ -1556,14 +1574,14 @@ pub fn derive_setters(_struct: &vkxml::Struct) -> Option<Tokens> {
|
||||||
|
|
||||||
let next_function = if has_next {
|
let next_function = if has_next {
|
||||||
if is_next_const {
|
if is_next_const {
|
||||||
quote!{
|
quote! {
|
||||||
pub fn next<T>(mut self, next: &'a T) -> #name_builder<'a> where T: #extends_name {
|
pub fn next<T>(mut self, next: &'a T) -> #name_builder<'a> where T: #extends_name {
|
||||||
self.inner.p_next = next as *const T as *const c_void;
|
self.inner.p_next = next as *const T as *const c_void;
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
quote!{
|
quote! {
|
||||||
pub fn next<T>(mut self, next: &'a mut T) -> #name_builder<'a> where T: #extends_name {
|
pub fn next<T>(mut self, next: &'a mut T) -> #name_builder<'a> where T: #extends_name {
|
||||||
self.inner.p_next = next as *mut T as *mut c_void;
|
self.inner.p_next = next as *mut T as *mut c_void;
|
||||||
self
|
self
|
||||||
|
@ -1571,18 +1589,18 @@ pub fn derive_setters(_struct: &vkxml::Struct) -> Option<Tokens> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
quote!{}
|
quote! {}
|
||||||
};
|
};
|
||||||
|
|
||||||
let next_trait = if has_next {
|
let next_trait = if has_next {
|
||||||
quote!{
|
quote! {
|
||||||
pub unsafe trait #extends_name {}
|
pub unsafe trait #extends_name {}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
quote!{}
|
quote! {}
|
||||||
};
|
};
|
||||||
|
|
||||||
let q = quote!{
|
let q = quote! {
|
||||||
impl #name {
|
impl #name {
|
||||||
pub fn builder<'a>() -> #name_builder<'a> {
|
pub fn builder<'a>() -> #name_builder<'a> {
|
||||||
#name_builder {
|
#name_builder {
|
||||||
|
@ -1629,8 +1647,8 @@ pub fn derive_setters(_struct: &vkxml::Struct) -> Option<Tokens> {
|
||||||
/// require and add the missing derives yourself.
|
/// require and add the missing derives yourself.
|
||||||
pub fn manual_derives(_struct: &vkxml::Struct) -> Tokens {
|
pub fn manual_derives(_struct: &vkxml::Struct) -> Tokens {
|
||||||
match _struct.name.as_str() {
|
match _struct.name.as_str() {
|
||||||
"VkExtent3D" | "VKExtent2D" => quote!{PartialEq, Eq, Hash,},
|
"VkExtent3D" | "VKExtent2D" => quote! {PartialEq, Eq, Hash,},
|
||||||
_ => quote!{},
|
_ => quote! {},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn generate_struct(_struct: &vkxml::Struct, union_types: &HashSet<&str>) -> Tokens {
|
pub fn generate_struct(_struct: &vkxml::Struct, union_types: &HashSet<&str>) -> Tokens {
|
||||||
|
@ -1643,7 +1661,7 @@ pub fn generate_struct(_struct: &vkxml::Struct, union_types: &HashSet<&str>) ->
|
||||||
let params = members.clone().map(|field| {
|
let params = members.clone().map(|field| {
|
||||||
let param_ident = field.param_ident();
|
let param_ident = field.param_ident();
|
||||||
let param_ty_tokens = field.type_tokens();
|
let param_ty_tokens = field.type_tokens();
|
||||||
quote!{pub #param_ident: #param_ty_tokens}
|
quote! {pub #param_ident: #param_ty_tokens}
|
||||||
});
|
});
|
||||||
|
|
||||||
let debug_tokens = derive_debug(_struct, union_types);
|
let debug_tokens = derive_debug(_struct, union_types);
|
||||||
|
@ -1660,7 +1678,7 @@ pub fn generate_struct(_struct: &vkxml::Struct, union_types: &HashSet<&str>) ->
|
||||||
} else {
|
} else {
|
||||||
quote!()
|
quote!()
|
||||||
};
|
};
|
||||||
quote!{
|
quote! {
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
#[derive(Copy, Clone, #default_str #dbg_str #manual_derive_tokens)]
|
#[derive(Copy, Clone, #default_str #dbg_str #manual_derive_tokens)]
|
||||||
pub struct #name {
|
pub struct #name {
|
||||||
|
@ -1702,11 +1720,11 @@ fn generate_funcptr(fnptr: &vkxml::FunctionPointer) -> Tokens {
|
||||||
let params = fnptr.param.iter().map(|field| {
|
let params = fnptr.param.iter().map(|field| {
|
||||||
let ident = field.param_ident();
|
let ident = field.param_ident();
|
||||||
let type_tokens = field.type_tokens();
|
let type_tokens = field.type_tokens();
|
||||||
quote!{
|
quote! {
|
||||||
#ident: #type_tokens
|
#ident: #type_tokens
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
#[allow(non_camel_case_types)]
|
#[allow(non_camel_case_types)]
|
||||||
pub type #name = Option<unsafe extern "system" fn(#(#params),*) -> #ret_ty_tokens>;
|
pub type #name = Option<unsafe extern "system" fn(#(#params),*) -> #ret_ty_tokens>;
|
||||||
}
|
}
|
||||||
|
@ -1717,11 +1735,11 @@ fn generate_union(union: &vkxml::Union) -> Tokens {
|
||||||
let fields = union.elements.iter().map(|field| {
|
let fields = union.elements.iter().map(|field| {
|
||||||
let name = field.param_ident();
|
let name = field.param_ident();
|
||||||
let ty = field.type_tokens();
|
let ty = field.type_tokens();
|
||||||
quote!{
|
quote! {
|
||||||
pub #name: #ty
|
pub #name: #ty
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
#[derive(Copy, Clone)]
|
#[derive(Copy, Clone)]
|
||||||
pub union #name {
|
pub union #name {
|
||||||
|
@ -1770,11 +1788,13 @@ pub fn generate_feature<'a>(
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}).collect()
|
})
|
||||||
|
.collect()
|
||||||
} else {
|
} else {
|
||||||
vec![]
|
vec![]
|
||||||
}
|
}
|
||||||
}).filter_map(|cmd_ref| commands.get(&cmd_ref.name))
|
})
|
||||||
|
.filter_map(|cmd_ref| commands.get(&cmd_ref.name))
|
||||||
.fold(
|
.fold(
|
||||||
(Vec::new(), Vec::new(), Vec::new(), Vec::new()),
|
(Vec::new(), Vec::new(), Vec::new(), Vec::new()),
|
||||||
|mut acc, &cmd_ref| {
|
|mut acc, &cmd_ref| {
|
||||||
|
@ -1799,7 +1819,7 @@ pub fn generate_feature<'a>(
|
||||||
let static_fn = if feature.version == 1.0 {
|
let static_fn = if feature.version == 1.0 {
|
||||||
generate_function_pointers(Ident::from("StaticFn"), &static_commands, fn_cache)
|
generate_function_pointers(Ident::from("StaticFn"), &static_commands, fn_cache)
|
||||||
} else {
|
} else {
|
||||||
quote!{}
|
quote! {}
|
||||||
};
|
};
|
||||||
let entry = generate_function_pointers(
|
let entry = generate_function_pointers(
|
||||||
Ident::from(format!("EntryFnV{}", version).as_str()),
|
Ident::from(format!("EntryFnV{}", version).as_str()),
|
||||||
|
@ -1842,7 +1862,7 @@ pub fn generate_constant<'a>(
|
||||||
c.ty()
|
c.ty()
|
||||||
};
|
};
|
||||||
let ty = ty.to_tokens();
|
let ty = ty.to_tokens();
|
||||||
quote!{
|
quote! {
|
||||||
pub const #ident: #ty = #value;
|
pub const #ident: #ty = #value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1862,7 +1882,7 @@ pub fn generate_feature_extension<'a>(
|
||||||
)),
|
)),
|
||||||
_ => None,
|
_ => None,
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
#(#constants)*
|
#(#constants)*
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1875,9 +1895,9 @@ pub fn generate_const_displays<'a>(const_values: &HashMap<Ident, Vec<Ident>>) ->
|
||||||
if ty.to_string().contains("Flags") {
|
if ty.to_string().contains("Flags") {
|
||||||
let cases = values.iter().map(|value| {
|
let cases = values.iter().map(|value| {
|
||||||
let name = value.to_string();
|
let name = value.to_string();
|
||||||
quote!{ (#ty::#value.0, #name) }
|
quote! { (#ty::#value.0, #name) }
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
impl fmt::Display for #ty {
|
impl fmt::Display for #ty {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
const KNOWN: &[(Flags, &str)] = &[#(#cases),*];
|
const KNOWN: &[(Flags, &str)] = &[#(#cases),*];
|
||||||
|
@ -1888,9 +1908,9 @@ pub fn generate_const_displays<'a>(const_values: &HashMap<Ident, Vec<Ident>>) ->
|
||||||
} else {
|
} else {
|
||||||
let cases = values.iter().map(|value| {
|
let cases = values.iter().map(|value| {
|
||||||
let name = value.to_string();
|
let name = value.to_string();
|
||||||
quote!{ Self::#value => Some(#name), }
|
quote! { Self::#value => Some(#name), }
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
impl fmt::Display for #ty {
|
impl fmt::Display for #ty {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
let name = match *self {
|
let name = match *self {
|
||||||
|
@ -1907,7 +1927,7 @@ pub fn generate_const_displays<'a>(const_values: &HashMap<Ident, Vec<Ident>>) ->
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
fn display_flags(f: &mut fmt::Formatter, known: &[(Flags, &'static str)], value: Flags) -> fmt::Result {
|
fn display_flags(f: &mut fmt::Formatter, known: &[(Flags, &'static str)], value: Flags) -> fmt::Result {
|
||||||
let mut first = true;
|
let mut first = true;
|
||||||
let mut accum = value;
|
let mut accum = value;
|
||||||
|
@ -1939,19 +1959,20 @@ pub fn generate_aliases_of_types<'a>(
|
||||||
.filter_map(|child| match child {
|
.filter_map(|child| match child {
|
||||||
vk_parse::TypesChild::Type(ty) => Some((ty.name.as_ref()?, ty.alias.as_ref()?)),
|
vk_parse::TypesChild::Type(ty) => Some((ty.name.as_ref()?, ty.alias.as_ref()?)),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).filter_map(|(name, alias)| {
|
})
|
||||||
|
.filter_map(|(name, alias)| {
|
||||||
let name_ident = name_to_tokens(name);
|
let name_ident = name_to_tokens(name);
|
||||||
if ty_cache.contains(&name_ident) {
|
if ty_cache.contains(&name_ident) {
|
||||||
return None;
|
return None;
|
||||||
};
|
};
|
||||||
ty_cache.insert(name_ident.clone());
|
ty_cache.insert(name_ident.clone());
|
||||||
let alias_ident = name_to_tokens(alias);
|
let alias_ident = name_to_tokens(alias);
|
||||||
let tokens = quote!{
|
let tokens = quote! {
|
||||||
pub type #name_ident = #alias_ident;
|
pub type #name_ident = #alias_ident;
|
||||||
};
|
};
|
||||||
Some(tokens)
|
Some(tokens)
|
||||||
});
|
});
|
||||||
quote!{
|
quote! {
|
||||||
#(#aliases)*
|
#(#aliases)*
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1965,7 +1986,8 @@ pub fn write_source_code(path: &Path) {
|
||||||
.filter_map(|item| match item {
|
.filter_map(|item| match item {
|
||||||
vk_parse::RegistryChild::Extensions(ref ext) => Some(&ext.children),
|
vk_parse::RegistryChild::Extensions(ref ext) => Some(&ext.children),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).nth(0)
|
})
|
||||||
|
.nth(0)
|
||||||
.expect("extension");
|
.expect("extension");
|
||||||
let mut ty_cache = HashSet::new();
|
let mut ty_cache = HashSet::new();
|
||||||
let aliases: Vec<_> = spec2
|
let aliases: Vec<_> = spec2
|
||||||
|
@ -1976,7 +1998,8 @@ pub fn write_source_code(path: &Path) {
|
||||||
Some(generate_aliases_of_types(ty, &mut ty_cache))
|
Some(generate_aliases_of_types(ty, &mut ty_cache))
|
||||||
}
|
}
|
||||||
_ => None,
|
_ => None,
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
let spec = vk_parse::parse_file_as_vkxml(path);
|
let spec = vk_parse::parse_file_as_vkxml(path);
|
||||||
let commands: HashMap<vkxml::Identifier, &vkxml::Command> = spec
|
let commands: HashMap<vkxml::Identifier, &vkxml::Command> = spec
|
||||||
|
@ -1985,7 +2008,8 @@ pub fn write_source_code(path: &Path) {
|
||||||
.filter_map(|elem| match elem {
|
.filter_map(|elem| match elem {
|
||||||
vkxml::RegistryElement::Commands(ref cmds) => Some(cmds),
|
vkxml::RegistryElement::Commands(ref cmds) => Some(cmds),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).flat_map(|cmds| cmds.elements.iter().map(|cmd| (cmd.name.clone(), cmd)))
|
})
|
||||||
|
.flat_map(|cmds| cmds.elements.iter().map(|cmd| (cmd.name.clone(), cmd)))
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let features: Vec<&vkxml::Feature> = spec
|
let features: Vec<&vkxml::Feature> = spec
|
||||||
|
@ -1994,7 +2018,8 @@ pub fn write_source_code(path: &Path) {
|
||||||
.filter_map(|elem| match elem {
|
.filter_map(|elem| match elem {
|
||||||
vkxml::RegistryElement::Features(ref features) => Some(features),
|
vkxml::RegistryElement::Features(ref features) => Some(features),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).flat_map(|features| features.elements.iter())
|
})
|
||||||
|
.flat_map(|features| features.elements.iter())
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let definitions: Vec<&vkxml::DefinitionsElement> = spec
|
let definitions: Vec<&vkxml::DefinitionsElement> = spec
|
||||||
|
@ -2003,7 +2028,8 @@ pub fn write_source_code(path: &Path) {
|
||||||
.filter_map(|elem| match elem {
|
.filter_map(|elem| match elem {
|
||||||
vkxml::RegistryElement::Definitions(ref definitions) => Some(definitions),
|
vkxml::RegistryElement::Definitions(ref definitions) => Some(definitions),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).flat_map(|definitions| definitions.elements.iter())
|
})
|
||||||
|
.flat_map(|definitions| definitions.elements.iter())
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let enums: Vec<&vkxml::Enumeration> = spec
|
let enums: Vec<&vkxml::Enumeration> = spec
|
||||||
|
@ -2012,12 +2038,14 @@ pub fn write_source_code(path: &Path) {
|
||||||
.filter_map(|elem| match elem {
|
.filter_map(|elem| match elem {
|
||||||
vkxml::RegistryElement::Enums(ref enums) => Some(enums),
|
vkxml::RegistryElement::Enums(ref enums) => Some(enums),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).flat_map(|enums| {
|
})
|
||||||
|
.flat_map(|enums| {
|
||||||
enums.elements.iter().filter_map(|_enum| match *_enum {
|
enums.elements.iter().filter_map(|_enum| match *_enum {
|
||||||
vkxml::EnumsElement::Enumeration(ref e) => Some(e),
|
vkxml::EnumsElement::Enumeration(ref e) => Some(e),
|
||||||
_ => None,
|
_ => None,
|
||||||
})
|
})
|
||||||
}).collect();
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
let constants: Vec<&vkxml::Constant> = spec
|
let constants: Vec<&vkxml::Constant> = spec
|
||||||
.elements
|
.elements
|
||||||
|
@ -2025,7 +2053,8 @@ pub fn write_source_code(path: &Path) {
|
||||||
.filter_map(|elem| match elem {
|
.filter_map(|elem| match elem {
|
||||||
vkxml::RegistryElement::Constants(ref constants) => Some(constants),
|
vkxml::RegistryElement::Constants(ref constants) => Some(constants),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).flat_map(|constants| constants.elements.iter())
|
})
|
||||||
|
.flat_map(|constants| constants.elements.iter())
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let mut fn_cache = HashSet::new();
|
let mut fn_cache = HashSet::new();
|
||||||
|
@ -2059,14 +2088,16 @@ pub fn write_source_code(path: &Path) {
|
||||||
&mut const_values,
|
&mut const_values,
|
||||||
&mut fn_cache,
|
&mut fn_cache,
|
||||||
)
|
)
|
||||||
}).collect_vec();
|
})
|
||||||
|
.collect_vec();
|
||||||
|
|
||||||
let union_types = definitions
|
let union_types = definitions
|
||||||
.iter()
|
.iter()
|
||||||
.filter_map(|def| match def {
|
.filter_map(|def| match def {
|
||||||
vkxml::DefinitionsElement::Union(ref union) => Some(union.name.as_str()),
|
vkxml::DefinitionsElement::Union(ref union) => Some(union.name.as_str()),
|
||||||
_ => None,
|
_ => None,
|
||||||
}).collect::<HashSet<&str>>();
|
})
|
||||||
|
.collect::<HashSet<&str>>();
|
||||||
|
|
||||||
let definition_code: Vec<_> = definitions
|
let definition_code: Vec<_> = definitions
|
||||||
.into_iter()
|
.into_iter()
|
||||||
|
@ -2088,7 +2119,7 @@ pub fn write_source_code(path: &Path) {
|
||||||
let define_handle_macro = define_handle_macro();
|
let define_handle_macro = define_handle_macro();
|
||||||
let version_macros = vk_version_macros();
|
let version_macros = vk_version_macros();
|
||||||
let platform_specific_types = platform_specific_types();
|
let platform_specific_types = platform_specific_types();
|
||||||
let source_code = quote!{
|
let source_code = quote! {
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::os::raw::*;
|
use std::os::raw::*;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue