use utils::vk_traits::*;
#[derive(Debug, Clone)]
pub struct VkPipelineCoverageReductionStateCreateFlags {
}
#[doc(hidden)]
pub type RawVkPipelineCoverageReductionStateCreateFlags = u32;
impl VkWrappedType<RawVkPipelineCoverageReductionStateCreateFlags> for VkPipelineCoverageReductionStateCreateFlags {
fn vk_to_raw(src: &VkPipelineCoverageReductionStateCreateFlags, dst: &mut RawVkPipelineCoverageReductionStateCreateFlags) {
*dst = 0;
}
}
impl VkRawType<VkPipelineCoverageReductionStateCreateFlags> for RawVkPipelineCoverageReductionStateCreateFlags {
fn vk_to_wrapped(src: &RawVkPipelineCoverageReductionStateCreateFlags) -> VkPipelineCoverageReductionStateCreateFlags {
VkPipelineCoverageReductionStateCreateFlags {
}
}
}
impl Default for VkPipelineCoverageReductionStateCreateFlags {
fn default() -> VkPipelineCoverageReductionStateCreateFlags {
VkPipelineCoverageReductionStateCreateFlags {
}
}
}
impl VkPipelineCoverageReductionStateCreateFlags {
pub fn none() -> Self {
VkPipelineCoverageReductionStateCreateFlags {
}
}
pub fn all() -> Self {
VkPipelineCoverageReductionStateCreateFlags {
}
}
pub fn to_u32(&self) -> u32 {
0
}
pub fn from_u32(value: u32) -> Self {
VkPipelineCoverageReductionStateCreateFlags {
}
}
}
#[doc(hidden)]
#[macro_export]
macro_rules! VkPipelineCoverageReductionStateCreateFlags {
( $( $x:ident ),* ) => {
VkPipelineCoverageReductionStateCreateFlags {
$($x: true,)*
..VkPipelineCoverageReductionStateCreateFlags::none()
}
}
}