[][src]Struct iron_oxide::MTLRenderPipelineDescriptor

pub struct MTLRenderPipelineDescriptor(_);

Implementations

impl MTLRenderPipelineDescriptor[src]

pub unsafe fn new() -> MTLRenderPipelineDescriptor[src]

pub unsafe fn set_vertex_function(&self, function: &MTLFunction)[src]

pub unsafe fn set_fragment_function(&self, function: &MTLFunction)[src]

pub unsafe fn set_vertex_descriptor(&self, desc: &MTLVertexDescriptor)[src]

pub unsafe fn get_color_attachments(
    &self
) -> MTLRenderPipelineColorAttachmentDescriptorArray
[src]

pub unsafe fn reset(&self)[src]

pub unsafe fn set_depth_attachment_pixel_format(&self, format: MTLPixelFormat)[src]

pub unsafe fn set_stencil_attachment_pixel_format(&self, format: MTLPixelFormat)[src]

pub unsafe fn set_sample_count(&self, count: NSUInteger)[src]

pub unsafe fn set_alpha_to_coverage_enabled(&self, enabled: bool)[src]

pub unsafe fn set_alpha_to_one_enabled(&self, enabled: bool)[src]

pub unsafe fn set_rasterization_enabled(&self, enabled: bool)[src]

pub unsafe fn set_input_primitive_topology(
    &self,
    topology: MTLPrimitiveTopologyClass
)
[src]

Trait Implementations

impl Drop for MTLRenderPipelineDescriptor[src]

impl Object for MTLRenderPipelineDescriptor[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, 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.