Struct vulkano::descriptor::pipeline_layout::PipelineLayoutDescPcRange [] [src]

pub struct PipelineLayoutDescPcRange {
    pub offset: usize,
    pub size: usize,
    pub stages: ShaderStages,
}

Description of a range of the push constants of a pipeline layout.

Fields

Offset in bytes from the start of the push constants to this range.

Size in bytes of the range.

The stages which can access this range. Note that the same shader stage can't access two different ranges.

Trait Implementations

impl Debug for PipelineLayoutDescPcRange
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for PipelineLayoutDescPcRange
[src]

impl Clone for PipelineLayoutDescPcRange
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations