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

    Interface RenderPipelineOutputDepthStencilAttachment

    Attachment operations selected for one physical output depth/stencil attachment.

    Stencil fields are ignored when RenderPipelineOutput.depthStencilFormat has no stencil aspect.

    interface RenderPipelineOutputDepthStencilAttachment {
        depthClearValue: number;
        depthLoadOp: RenderTargetLoadOp;
        depthStoreOp: RenderTargetStoreOp;
        stencilClearValue: number;
        stencilLoadOp: RenderTargetLoadOp;
        stencilStoreOp: RenderTargetStoreOp;
    }
    Index
    depthClearValue: number

    Depth clear value used when depthLoadOp is clear.

    depthLoadOp: RenderTargetLoadOp

    Whether the invocation loads or clears existing depth contents.

    depthStoreOp: RenderTargetStoreOp

    Whether the invocation preserves or discards resulting depth contents.

    stencilClearValue: number

    Stencil clear value used when stencilLoadOp is clear.

    stencilLoadOp: RenderTargetLoadOp

    Whether the invocation loads or clears existing stencil contents.

    stencilStoreOp: RenderTargetStoreOp

    Whether the invocation preserves or discards resulting stencil contents.