Expand description
Utility structures and functions that are built on top of the main wgpu
API.
Nothing in this module is a part of the WebGPU API specification;
they are unique to the wgpu
library.
Structs§
- Buffer
Init Descriptor - Describes a Buffer when allocating.
- Dispatch
Indirect - The structure expected in
indirect_buffer
forComputePass::dispatch_workgroups_indirect
. - Download
Buffer - CPU accessible buffer used to download data back from the GPU.
- Draw
Indexed Indirect - The structure expected in
indirect_buffer
forRenderEncoder::draw_indexed_indirect
. - Draw
Indirect - The structure expected in
indirect_buffer
forRenderEncoder::draw_indirect
. - Staging
Belt - Efficiently performs many buffer writes by sharing and reusing temporary buffers.
Traits§
- Device
Ext - Utility methods not meant to be in the main API.
- Render
Encoder - Methods shared by
RenderPass
andRenderBundleEncoder
.
Functions§
- align_
to - Aligns a
value
to analignment
. - backend_
bits_ from_ env - Get a set of backend bits from the environment variable WGPU_BACKEND.
- dx12_
shader_ compiler_ from_ env - Choose which DX12 shader compiler to use from the environment variable
WGPU_DX12_COMPILER
. - initialize_
adapter_ from_ env - Initialize the adapter obeying the WGPU_ADAPTER_NAME environment variable.
- initialize_
adapter_ from_ env_ or_ default - Initialize the adapter obeying the WGPU_ADAPTER_NAME environment variable and if it doesn’t exist fall back on a default adapter.
- make_
spirv_ raw - Version of make_spirv intended for use with
Device::create_shader_module_spirv
. Returns raw slice instead of ShaderSource. - parse_
backends_ from_ comma_ list - Generates a set of backends from a comma separated list of case-insensitive backend names.
- power_
preference_ from_ env - Get a power preference from the environment variable WGPU_POWER_PREF