sprunk-engine
    Preparing search index...

    A class that manages the resources for the WebGPU rendering engine. Implement frequent resource management operations / customized boilerplate for WebGPU.

    Implements

    Index

    Constructors

    Properties

    onError: Event<Error> = ...

    Event that is triggered when an asynchronous webgpu error occurs.

    Accessors

    Methods

    • Creates a render pipeline asynchronously.

      Parameters

      • vertexWGSLShader: string

        The vertex shader code in WGSL.

      • fragmentWGSLShader: string

        The fragment shader code in WGSL.

      • primitiveState: GPUPrimitiveState

        The primitive state configuration.

      • bindGroupLayouts: Iterable<null | GPUBindGroupLayout>

        The bind group layouts for the pipeline.

      • OptionalbuffersLayouts: Iterable<null | GPUVertexBufferLayout, any, any>
      • OptionaltargetBlend: GPUBlendState

        The blend state for the pipeline (optional).

      Returns Promise<GPURenderPipeline>

      The created render pipeline.

    • Completes the rendering process by ending the render pass and submitting the command buffer to the GPU queue.

      Parameters

      • passEncoder: { commandEncoder: GPUCommandEncoder; renderPassEncoder: GPURenderPassEncoder }

        An object containing the command encoder and render pass encoder.

      Returns void

    • Starts a render pass with a command encoder and render pass encoder.

      Parameters

      • textureView: GPUTextureView

        The GPU texture view for rendering.

      • texture: GPUTexture

        The GPU texture to render to.

      Returns { commandEncoder: GPUCommandEncoder; renderPassEncoder: GPURenderPassEncoder }

      An object with the command encoder and render pass encoder.

      Sets up the render pass descriptor with color and depth-stencil attachments, clearing the color to transparent black and depth to the farthest value.