Struct vulkan_rs::VkStencilOpState [] [src]

#[repr(C)]
pub struct VkStencilOpState { pub failOp: VkStencilOp, pub passOp: VkStencilOp, pub depthFailOp: VkStencilOp, pub compareOp: VkCompareOp, pub compareMask: u32, pub writeMask: u32, pub reference: u32, }

Structure specifying stencil operation state

Fields

the action performed on samples that fail the stencil test

the action performed on samples that pass both the depth and stencil tests

the action performed on samples that pass the stencil test and fail the depth test

the comparison operator used in the stencil test

an integer reference value that is used in the unsigned stencil comparison

Trait Implementations

impl Copy for VkStencilOpState
[src]

impl Clone for VkStencilOpState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for VkStencilOpState
[src]

Returns the "default value" for a type. Read more