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

    Interface RenderPipelineDepthStencilAttachment

    One setup-declared depth/stencil attachment.

    interface RenderPipelineDepthStencilAttachment {
        depthClearValue?: number;
        depthLoadOp?: RenderTargetLoadOp;
        depthReadOnly?: boolean;
        depthStoreOp?: RenderTargetStoreOp;
        stencilClearValue?: number;
        stencilLoadOp?: RenderTargetLoadOp;
        stencilReadOnly?: boolean;
        stencilStoreOp?: RenderTargetStoreOp;
        texture: RenderGraphTextureHandle;
    }
    Index
    depthClearValue?: number

    Depth clear value.

    depthLoadOp?: RenderTargetLoadOp

    Depth aspect load operation.

    depthReadOnly?: boolean

    Prevent depth writes while retaining read-only attachment access.

    depthStoreOp?: RenderTargetStoreOp

    Depth aspect store operation.

    stencilClearValue?: number

    Unsigned stencil clear value.

    stencilLoadOp?: RenderTargetLoadOp

    Stencil aspect load operation.

    stencilReadOnly?: boolean

    Prevent stencil writes while retaining read-only attachment access.

    stencilStoreOp?: RenderTargetStoreOp

    Stencil aspect store operation.

    Depth/stencil texture handle.