pixi.js
    Preparing search index...

    Interface RenderTargetDescriptorAdvanced

    Descriptor for creating a RenderTarget from a WebGPU-flavored descriptor.

    interface RenderTargetDescriptor {
        colorAttachments: PixiColorAttachment[];
        depthStencilAttachment?: PixiDepthStencilAttachment;
        isRoot?: boolean;
        label?: string;
    }
    Index

    Properties

    colorAttachments: PixiColorAttachment[]

    The color attachments to use

    depthStencilAttachment?: PixiDepthStencilAttachment

    The depth/stencil attachment to use

    isRoot?: boolean

    Is this a root element, true if this is gl context owners render target

    label?: string

    a label for debugging — shows up on the render pass in GPU debuggers (WebGPU)