Enum bedrock::resources::BufferSparseBinding [] [src]

#[repr(C)]
pub enum BufferSparseBinding { None, Bound, Residency, Aliased, Both, }

Bitset specifying additional parameters of a buffer

Variants

No sparse binding features

the buffer will be backed using sparse memory binding

the buffer can be partially backed using sparse memory binding.

the buffer will be backed using sparse memory binding with memory ranges that might also simultaneously be backing another buffer (or another portion of the same buffer)

Aliased and Residency

Trait Implementations

impl Debug for BufferSparseBinding
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BufferSparseBinding
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for BufferSparseBinding
[src]

impl PartialEq for BufferSparseBinding
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for BufferSparseBinding
[src]

Auto Trait Implementations