[][src]Struct gfx::pso::AccessInfo

pub struct AccessInfo<R> where
    R: Resources
{ /* fields omitted */ }

Informations about what is accessed by a bunch of commands.

Methods

impl<R> AccessInfo<R> where
    R: Resources
[src]

pub fn new() -> AccessInfo<R>[src]

Creates empty access informations

pub fn clear(&mut self)[src]

Clear access informations

pub fn buffer_read(&mut self, buffer: &RawBuffer<R>)[src]

Register a buffer read access

pub fn buffer_write(&mut self, buffer: &RawBuffer<R>)[src]

Register a buffer write access

pub fn mapped_reads(&self) -> Iter<RawBuffer<R>>[src]

Returns the mapped buffers that The GPU will read from

pub fn mapped_writes(&self) -> Iter<RawBuffer<R>>[src]

Returns the mapped buffers that The GPU will write to

pub fn has_mapped_reads(&self) -> bool[src]

Is there any mapped buffer reads ?

pub fn has_mapped_writes(&self) -> bool[src]

Is there any mapped buffer writes ?

pub fn take_accesses(&self) -> Result<AccessGuard<R>, SubmissionError>[src]

Takes all the accesses necessary for submission

Trait Implementations

impl<R> Eq for AccessInfo<R> where
    R: Resources + Eq
[src]

impl<R> Clone for AccessInfo<R> where
    R: Resources + Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<R> PartialEq<AccessInfo<R>> for AccessInfo<R> where
    R: Resources + PartialEq<R>, 
[src]

impl<R> Debug for AccessInfo<R> where
    R: Resources + Debug
[src]

Auto Trait Implementations

impl<R> Send for AccessInfo<R> where
    <R as Resources>::Buffer: Send + Sync,
    <R as Resources>::Mapping: Send

impl<R> Sync for AccessInfo<R> where
    <R as Resources>::Buffer: Send + Sync,
    <R as Resources>::Mapping: Send

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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