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

    Interface RenderPipelineOutput

    Physical output metadata for one pipeline invocation.

    interface RenderPipelineOutput {
        colorAttachmentCount: number;
        depthStencilAttachment:
            | Readonly<RenderPipelineOutputDepthStencilAttachment>
            | null;
        depthStencilFormat: RenderTargetDepthStencilFormat | null;
        height: number;
        kind: "surface" | "render-target";
        sampleCount: RenderTargetSampleCount;
        width: number;
        colorAttachment(
            index: number,
        ): Readonly<RenderPipelineOutputColorAttachment>;
        colorFormat(index: number): RenderTargetColorFormat;
    }
    Index
    colorAttachmentCount: number

    Number of continuous output color attachments.

    depthStencilAttachment:
        | Readonly<RenderPipelineOutputDepthStencilAttachment>
        | null

    Selected depth/stencil operations, or null when no depth attachment exists.

    depthStencilFormat: RenderTargetDepthStencilFormat | null

    Output depth/stencil format, or null when no depth attachment exists.

    height: number

    Output height in physical pixels.

    kind: "surface" | "render-target"

    Whether this invocation renders to the configured surface or a RenderTarget.

    Output raster sample count.

    width: number

    Output width in physical pixels.