pixi.js
    Preparing search index...

    Interface RenderOptions

    The options for rendering a view.

    interface RenderOptions {
        clear?: CLEAR_OR_BOOL;
        clearColor?: ColorSource;
        container: Container;
        target?: RenderSurface;
        transform?: Matrix;
    }

    Hierarchy (View Summary)

    Index

    Properties

    The clear mode to use.

    clearColor?: ColorSource

    The color to clear with.

    container: Container

    The container to render.

    target?: RenderSurface

    The render target to render. if this target is a canvas and you are using the WebGL renderer, please ensure you have set multiView to true on renderer.

    transform?: Matrix

    the transform to apply to the container.