Struct ash::vk::ExtExtendedDynamicStateFn[][src]

pub struct ExtExtendedDynamicStateFn {
    pub cmd_set_cull_mode_ext: extern "system" fn(command_buffer: CommandBuffer, cull_mode: CullModeFlags),
    pub cmd_set_front_face_ext: extern "system" fn(command_buffer: CommandBuffer, front_face: FrontFace),
    pub cmd_set_primitive_topology_ext: extern "system" fn(command_buffer: CommandBuffer, primitive_topology: PrimitiveTopology),
    pub cmd_set_viewport_with_count_ext: extern "system" fn(command_buffer: CommandBuffer, viewport_count: u32, p_viewports: *const Viewport),
    pub cmd_set_scissor_with_count_ext: extern "system" fn(command_buffer: CommandBuffer, scissor_count: u32, p_scissors: *const Rect2D),
    pub cmd_bind_vertex_buffers2_ext: extern "system" fn(command_buffer: CommandBuffer, first_binding: u32, binding_count: u32, p_buffers: *const Buffer, p_offsets: *const DeviceSize, p_sizes: *const DeviceSize, p_strides: *const DeviceSize),
    pub cmd_set_depth_test_enable_ext: extern "system" fn(command_buffer: CommandBuffer, depth_test_enable: Bool32),
    pub cmd_set_depth_write_enable_ext: extern "system" fn(command_buffer: CommandBuffer, depth_write_enable: Bool32),
    pub cmd_set_depth_compare_op_ext: extern "system" fn(command_buffer: CommandBuffer, depth_compare_op: CompareOp),
    pub cmd_set_depth_bounds_test_enable_ext: extern "system" fn(command_buffer: CommandBuffer, depth_bounds_test_enable: Bool32),
    pub cmd_set_stencil_test_enable_ext: extern "system" fn(command_buffer: CommandBuffer, stencil_test_enable: Bool32),
    pub cmd_set_stencil_op_ext: extern "system" fn(command_buffer: CommandBuffer, face_mask: StencilFaceFlags, fail_op: StencilOp, pass_op: StencilOp, depth_fail_op: StencilOp, compare_op: CompareOp),
}

Fields

cmd_set_cull_mode_ext: extern "system" fn(command_buffer: CommandBuffer, cull_mode: CullModeFlags)cmd_set_front_face_ext: extern "system" fn(command_buffer: CommandBuffer, front_face: FrontFace)cmd_set_primitive_topology_ext: extern "system" fn(command_buffer: CommandBuffer, primitive_topology: PrimitiveTopology)cmd_set_viewport_with_count_ext: extern "system" fn(command_buffer: CommandBuffer, viewport_count: u32, p_viewports: *const Viewport)cmd_set_scissor_with_count_ext: extern "system" fn(command_buffer: CommandBuffer, scissor_count: u32, p_scissors: *const Rect2D)cmd_bind_vertex_buffers2_ext: extern "system" fn(command_buffer: CommandBuffer, first_binding: u32, binding_count: u32, p_buffers: *const Buffer, p_offsets: *const DeviceSize, p_sizes: *const DeviceSize, p_strides: *const DeviceSize)cmd_set_depth_test_enable_ext: extern "system" fn(command_buffer: CommandBuffer, depth_test_enable: Bool32)cmd_set_depth_write_enable_ext: extern "system" fn(command_buffer: CommandBuffer, depth_write_enable: Bool32)cmd_set_depth_compare_op_ext: extern "system" fn(command_buffer: CommandBuffer, depth_compare_op: CompareOp)cmd_set_depth_bounds_test_enable_ext: extern "system" fn(command_buffer: CommandBuffer, depth_bounds_test_enable: Bool32)cmd_set_stencil_test_enable_ext: extern "system" fn(command_buffer: CommandBuffer, stencil_test_enable: Bool32)cmd_set_stencil_op_ext: extern "system" fn(command_buffer: CommandBuffer, face_mask: StencilFaceFlags, fail_op: StencilOp, pass_op: StencilOp, depth_fail_op: StencilOp, compare_op: CompareOp)

Implementations

impl ExtExtendedDynamicStateFn[src]

pub fn name() -> &'static CStr[src]

pub const SPEC_VERSION: u32[src]

impl ExtExtendedDynamicStateFn[src]

pub fn load<F>(_f: F) -> Self where
    F: FnMut(&CStr) -> *const c_void
[src]

pub unsafe fn cmd_set_cull_mode_ext(
    &self,
    command_buffer: CommandBuffer,
    cull_mode: CullModeFlags
)
[src]

pub unsafe fn cmd_set_front_face_ext(
    &self,
    command_buffer: CommandBuffer,
    front_face: FrontFace
)
[src]

pub unsafe fn cmd_set_primitive_topology_ext(
    &self,
    command_buffer: CommandBuffer,
    primitive_topology: PrimitiveTopology
)
[src]

pub unsafe fn cmd_set_viewport_with_count_ext(
    &self,
    command_buffer: CommandBuffer,
    viewport_count: u32,
    p_viewports: *const Viewport
)
[src]

pub unsafe fn cmd_set_scissor_with_count_ext(
    &self,
    command_buffer: CommandBuffer,
    scissor_count: u32,
    p_scissors: *const Rect2D
)
[src]

pub unsafe fn cmd_bind_vertex_buffers2_ext(
    &self,
    command_buffer: CommandBuffer,
    first_binding: u32,
    binding_count: u32,
    p_buffers: *const Buffer,
    p_offsets: *const DeviceSize,
    p_sizes: *const DeviceSize,
    p_strides: *const DeviceSize
)
[src]

pub unsafe fn cmd_set_depth_test_enable_ext(
    &self,
    command_buffer: CommandBuffer,
    depth_test_enable: Bool32
)
[src]

pub unsafe fn cmd_set_depth_write_enable_ext(
    &self,
    command_buffer: CommandBuffer,
    depth_write_enable: Bool32
)
[src]

pub unsafe fn cmd_set_depth_compare_op_ext(
    &self,
    command_buffer: CommandBuffer,
    depth_compare_op: CompareOp
)
[src]

pub unsafe fn cmd_set_depth_bounds_test_enable_ext(
    &self,
    command_buffer: CommandBuffer,
    depth_bounds_test_enable: Bool32
)
[src]

pub unsafe fn cmd_set_stencil_test_enable_ext(
    &self,
    command_buffer: CommandBuffer,
    stencil_test_enable: Bool32
)
[src]

pub unsafe fn cmd_set_stencil_op_ext(
    &self,
    command_buffer: CommandBuffer,
    face_mask: StencilFaceFlags,
    fail_op: StencilOp,
    pass_op: StencilOp,
    depth_fail_op: StencilOp,
    compare_op: CompareOp
)
[src]

Trait Implementations

impl Clone for ExtExtendedDynamicStateFn[src]

impl Send for ExtExtendedDynamicStateFn[src]

impl Sync for ExtExtendedDynamicStateFn[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.