Hilo3d API - v2.0.0
    Preparing search index...

    Interface ComputeKernelDescriptor

    Immutable compute pipeline configuration shared across renderer-local caches.

    interface ComputeKernelDescriptor {
        constants?: Readonly<Record<string, ComputePipelineConstant>>;
        label?: string;
        shader: ComputeShader;
    }
    Index
    constants?: Readonly<Record<string, ComputePipelineConstant>>

    Pipeline override constants fixed for the lifetime of this kernel.

    label?: string

    Optional diagnostic label.

    Immutable Direct WGSL shader and explicit binding ABI.