Skip to main content

GPUComputePassEncoder

class GPUComputePassEncoder

Properties Jump to heading

Jump to headingdispatchWorkgroups(
x: number,
y?: number,
z?: number,
): undefined
Jump to headingdispatchWorkgroupsIndirect(
indirectBuffer: GPUBuffer,
indirectOffset: number,
): undefined
Jump to headingend(): undefined
Jump to headinginsertDebugMarker(markerLabel: string): undefined
Jump to headingpushDebugGroup(groupLabel: string): undefined
Jump to headingsetBindGroup(
index: number,
bindGroup: GPUBindGroup,
dynamicOffsets?: number[],
): undefined
Jump to headingsetBindGroup(
index: number,
bindGroup: GPUBindGroup,
dynamicOffsetsData: Uint32Array,
dynamicOffsetsDataStart: number,
dynamicOffsetsDataLength: number,
): undefined
Back to top