Struct gfx_core::pso::PixelTargetSet[][src]

pub struct PixelTargetSet<R: Resources> {
    pub colors: [Option<R::RenderTargetView>; 4],
    pub depth: Option<R::DepthStencilView>,
    pub stencil: Option<R::DepthStencilView>,
    pub dimensions: Option<Dimensions>,
}

A complete set of render targets to be used for pixel export in PSO.

Fields

colors: [Option<R::RenderTargetView>; 4]

Array of color target views

depth: Option<R::DepthStencilView>

Depth target view

stencil: Option<R::DepthStencilView>

Stencil target view

dimensions: Option<Dimensions>

Rendering dimensions

Implementations

impl<R: Resources> PixelTargetSet<R>[src]

pub fn new() -> Self[src]

Create an empty set

pub fn add_color(
    &mut self,
    slot: ColorSlot,
    view: &R::RenderTargetView,
    dim: Dimensions
)
[src]

Add a color view to the specified slot

pub fn add_depth_stencil(
    &mut self,
    view: &R::DepthStencilView,
    has_depth: bool,
    has_stencil: bool,
    dim: Dimensions
)
[src]

Add a depth or stencil view to the specified slot

pub fn get_view(&self) -> (u16, u16, u16)[src]

Get the rendering view (returns values > 0)

Trait Implementations

impl<R: Clone + Resources> Clone for PixelTargetSet<R> where
    R::RenderTargetView: Clone,
    R::DepthStencilView: Clone,
    R::DepthStencilView: Clone
[src]

impl<R: Copy + Resources> Copy for PixelTargetSet<R> where
    R::RenderTargetView: Copy,
    R::DepthStencilView: Copy,
    R::DepthStencilView: Copy
[src]

impl<R: Debug + Resources> Debug for PixelTargetSet<R> where
    R::RenderTargetView: Debug,
    R::DepthStencilView: Debug,
    R::DepthStencilView: Debug
[src]

impl<R: Eq + Resources> Eq for PixelTargetSet<R> where
    R::RenderTargetView: Eq,
    R::DepthStencilView: Eq,
    R::DepthStencilView: Eq
[src]

impl<R: Hash + Resources> Hash for PixelTargetSet<R> where
    R::RenderTargetView: Hash,
    R::DepthStencilView: Hash,
    R::DepthStencilView: Hash
[src]

impl<R: PartialEq + Resources> PartialEq<PixelTargetSet<R>> for PixelTargetSet<R> where
    R::RenderTargetView: PartialEq,
    R::DepthStencilView: PartialEq,
    R::DepthStencilView: PartialEq
[src]

impl<R: Resources> StructuralEq for PixelTargetSet<R>[src]

impl<R: Resources> StructuralPartialEq for PixelTargetSet<R>[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for PixelTargetSet<R> where
    <R as Resources>::DepthStencilView: RefUnwindSafe,
    <R as Resources>::RenderTargetView: RefUnwindSafe

impl<R> Send for PixelTargetSet<R>

impl<R> Sync for PixelTargetSet<R>

impl<R> Unpin for PixelTargetSet<R> where
    <R as Resources>::DepthStencilView: Unpin,
    <R as Resources>::RenderTargetView: Unpin

impl<R> UnwindSafe for PixelTargetSet<R> where
    <R as Resources>::DepthStencilView: UnwindSafe,
    <R as Resources>::RenderTargetView: UnwindSafe

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.