Enum nc_renderer::common::ReadbackPayload[][src]

pub enum ReadbackPayload {
    RGB32U(Vec<Vector3<u32>>),
    RGBA32U(Vec<Vector4<u32>>),
    R32U(Vec<u32>),
    RGB32F(Vec<Vec3f>),
    RGBA32F(Vec<Vec4f>),
    R32F(Vec<f32>),
    Depth(Vec<f32>),
}
Expand description

Readback surface

Variants

RGB32U(Vec<Vector3<u32>>)

Tuple Fields of RGB32U

0: Vec<Vector3<u32>>
RGBA32U(Vec<Vector4<u32>>)

Tuple Fields of RGBA32U

0: Vec<Vector4<u32>>
R32U(Vec<u32>)

Tuple Fields of R32U

0: Vec<u32>
RGB32F(Vec<Vec3f>)

Tuple Fields of RGB32F

0: Vec<Vec3f>
RGBA32F(Vec<Vec4f>)

Tuple Fields of RGBA32F

0: Vec<Vec4f>
R32F(Vec<f32>)

Tuple Fields of R32F

0: Vec<f32>
Depth(Vec<f32>)

Tuple Fields of Depth

0: Vec<f32>

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.