1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
use std::os::raw::c_char;
use std::ops::Deref;
use std::ptr;
use std::cmp;
use std::mem;
use utils::c_bindings::*;
use utils::vk_convert::*;
use utils::vk_null::*;
use utils::vk_ptr::*;
use utils::vk_traits::*;
use vulkan::vk::*;
use vulkan::nvx::{VkObjectEntryType,RawVkObjectEntryType};
use vulkan::nvx::{VkObjectEntryUsageFlags,RawVkObjectEntryUsageFlags};
use vulkan::vk::{VkPipeline,RawVkPipeline};
#[derive(Debug, Clone)]
pub struct VkObjectTablePipelineEntry {
pub type_: VkObjectEntryType,
pub flags: VkObjectEntryUsageFlags,
pub pipeline: VkPipeline,
}
#[doc(hidden)]
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct RawVkObjectTablePipelineEntry {
pub type_: RawVkObjectEntryType,
pub flags: RawVkObjectEntryUsageFlags,
pub pipeline: RawVkPipeline,
}
impl VkWrappedType<RawVkObjectTablePipelineEntry> for VkObjectTablePipelineEntry {
fn vk_to_raw(src: &VkObjectTablePipelineEntry, dst: &mut RawVkObjectTablePipelineEntry) {
dst.type_ = vk_to_raw_value(&src.type_);
dst.flags = vk_to_raw_value(&src.flags);
dst.pipeline = vk_to_raw_value(&src.pipeline);
}
}
impl VkRawType<VkObjectTablePipelineEntry> for RawVkObjectTablePipelineEntry {
fn vk_to_wrapped(src: &RawVkObjectTablePipelineEntry) -> VkObjectTablePipelineEntry {
VkObjectTablePipelineEntry {
type_: RawVkObjectEntryType::vk_to_wrapped(&src.type_),
flags: RawVkObjectEntryUsageFlags::vk_to_wrapped(&src.flags),
pipeline: RawVkPipeline::vk_to_wrapped(&src.pipeline),
}
}
}
impl Default for VkObjectTablePipelineEntry {
fn default() -> VkObjectTablePipelineEntry {
VkObjectTablePipelineEntry {
type_: Default::default(),
flags: Default::default(),
pipeline: Default::default(),
}
}
}
impl VkSetup for VkObjectTablePipelineEntry {
fn vk_setup(&mut self, fn_table: *mut VkFunctionTable) {
VkSetup::vk_setup(&mut self.pipeline, fn_table);
}
}
impl VkFree for RawVkObjectTablePipelineEntry {
fn vk_free(&self) {
}
}