Struct wgpu::ComputePipelineDescriptor
source · pub struct ComputePipelineDescriptor<'a> {
pub label: Label<'a>,
pub layout: Option<&'a PipelineLayout>,
pub module: &'a ShaderModule,
pub entry_point: Option<&'a str>,
pub compilation_options: PipelineCompilationOptions<'a>,
pub cache: Option<&'a PipelineCache>,
}
Expand description
Describes a compute pipeline.
For use with Device::create_compute_pipeline
.
Corresponds to WebGPU GPUComputePipelineDescriptor
.
Fields§
§label: Label<'a>
Debug label of the pipeline. This will show up in graphics debuggers for easy identification.
layout: Option<&'a PipelineLayout>
The layout of bind groups for this pipeline.
If this is set, then Device::create_compute_pipeline
will raise a validation error if
the layout doesn’t match what the shader module(s) expect.
Using the same PipelineLayout
for many RenderPipeline
or ComputePipeline
pipelines guarantees that you don’t have to rebind any resources when switching between
those pipelines.
Default pipeline layout
If layout
is None
, then the pipeline has a default layout created and used instead.
The default layout is deduced from the shader modules.
You can use ComputePipeline::get_bind_group_layout
to create bind groups for use with
the default layout. However, these bind groups cannot be used with any other pipelines. This
is convenient for simple pipelines, but using an explicit layout is recommended in most
cases.
module: &'a ShaderModule
The compiled shader module for this stage.
entry_point: Option<&'a str>
The name of the entry point in the compiled shader to use.
If Some
, there must be a compute shader entry point with this name in module
.
Otherwise, expect exactly one compute shader entry point in module
, which will be
selected.
compilation_options: PipelineCompilationOptions<'a>
Advanced options for when this pipeline is compiled
This implements Default
, and for most users can be set to Default::default()
cache: Option<&'a PipelineCache>
The pipeline cache to use when creating this pipeline.
Trait Implementations§
source§impl<'a> Clone for ComputePipelineDescriptor<'a>
impl<'a> Clone for ComputePipelineDescriptor<'a>
source§fn clone(&self) -> ComputePipelineDescriptor<'a>
fn clone(&self) -> ComputePipelineDescriptor<'a>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more