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

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]

[src]

Creates empty access informations

[src]

Clear access informations

[src]

Register a buffer read access

[src]

Register a buffer write access

[src]

Returns the mapped buffers that The GPU will read from

[src]

Returns the mapped buffers that The GPU will write to

[src]

Is there any mapped buffer reads ?

[src]

Is there any mapped buffer writes ?

[src]

Takes all the accesses necessary for submission

Trait Implementations

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

[src]

Returns a copy of the value. Read more

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]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

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

[src]

Formats the value using the given formatter.

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