Interface IPassManager

IPassManager provides a base interface for Pass managers like MapRenderingManager.

Hierarchy

Methods

Methods

  • The render method to extend in IPassManager's implementations. This is the place where the desired setups and effect composing and chaining happen.

    Parameters

    • renderer: WebGLRenderer
    • Rest ...args: any[]

    Returns void

  • The resize method to extend in Pass implementations to resize the render targets to match the size of the visible canvas. It should be called on resize events.

    Parameters

    • width: number

      Width to resize to.

    • height: number

      Height to resize to.

    Returns void

Generated using TypeDoc