logo
pub struct CommandEncoder { /* private fields */ }
Expand description

Encodes a series of GPU operations.

A command encoder can record [RenderPass]es, ComputePasses, and transfer operations between driver-managed resources like [Buffer]s and [Texture]s.

When finished recording, call CommandEncoder::finish to obtain a [CommandBuffer] which may be submitted for execution.

Corresponds to WebGPU GPUCommandEncoder.

Implementations

Finishes recording and returns a [CommandBuffer] that can be submitted for execution.

Begins recording of a render pass.

This function returns a [RenderPass] object which records a single render pass.

Begins recording of a compute pass.

This function returns a ComputePass object which records a single compute pass.

Copy data from one buffer to another.

Panics
  • Buffer offsets or copy size not a multiple of [COPY_BUFFER_ALIGNMENT].
  • Copy would overrun buffer.
  • Copy within the same buffer.

Copy data from a buffer to a texture.

Panics
  • Copy would overrun buffer.
  • Copy would overrun texture.
  • source.layout.bytes_per_row isn’t divisible by [COPY_BYTES_PER_ROW_ALIGNMENT].

Copy data from a texture to a buffer.

Panics
  • Copy would overrun buffer.
  • Copy would overrun texture.
  • source.layout.bytes_per_row isn’t divisible by [COPY_BYTES_PER_ROW_ALIGNMENT].

Copy data from one texture to another.

Panics
  • Textures are not the same type
  • If a depth texture, or a multisampled texture, the entire texture must be copied
  • Copy would overrun either texture

Clears texture to zero.

Note that unlike with clear_buffer, COPY_DST usage is not required.

Implementation notes
  • implemented either via buffer copies and render/depth target clear, path depends on texture usages
  • behaves like texture zero init, but is performed immediately (clearing is not delayed via marking it as uninitialized)
Panics
  • CLEAR_TEXTURE extension not enabled
  • Range is out of bounds

Clears buffer to zero.

Panics
  • Buffer does not have COPY_DST usage.
  • Range it out of bounds

Inserts debug marker.

Start record commands and group it into debug marker group.

Stops command recording and creates debug group.

Features::TIMESTAMP_QUERY must be enabled on the device in order to call these functions.

Issue a timestamp command at this point in the queue. The timestamp will be written to the specified query set, at the specified index.

Must be multiplied by [Queue::get_timestamp_period] to get the value in nanoseconds. Absolute values have no meaning, but timestamps can be subtracted to get the time it takes for a string of operations to complete.

Features::TIMESTAMP_QUERY or Features::PIPELINE_STATISTICS_QUERY must be enabled on the device in order to call these functions.

Resolve a query set, writing the results into the supplied destination buffer.

Queries may be between 8 and 40 bytes each. See [PipelineStatisticsTypes] for more information.

Trait Implementations

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Return the T ShaderType for self. When used in AsBindGroup derives, it is safe to assume that all images in self exist. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more