pixi.js
    Preparing search index...

    Interface BindStateAdvanced

    The persistent description of a render-surface binding: the target plus the frame, subresource, and orientation axes. Captured by RenderTargetSystem.getBindState.

    A clear is a per-call action, not part of the binding — see BindOptions.

    interface BindState {
        flipY?: boolean;
        frame?: Rectangle;
        layer?: number;
        mipLevel?: number;
        target: RenderSurface;
    }

    Hierarchy (View Summary)

    Index

    Properties

    flipY?: boolean

    opt-in Y-orientation toggle. false/omitted is a no-op (the historical !isRoot behavior); true inverts the orientation, and the winding with it.

    frame?: Rectangle

    the frame to render to, in base mip (mip 0) pixel space. When omitted, a Texture target falls back to its own frame and any other target binds in full.

    layer?: number

    the array layer (or slice/face) of the render surface to render to (subresource)

    0
    
    mipLevel?: number

    the mip level to render to (subresource)

    0
    

    the render surface to bind: a texture, canvas, or render target