Class SimpleOptimization

A extension of Optimization that abstracts some of the basic functionality needed to implement it.

Hierarchy

Constructors

Methods

  • Functions that should return true if the optimizer can increase or decrease work. If they return true the associated optimization function will be called.

    Returns boolean

  • Functions that should return true if the optimizer can increase or decrease work. If they return true the associated optimization function will be called.

    Returns boolean

  • Functions to increase or decrease work and optimize the frame if needed. These are called if the associated canIncreaseWork or canDecreaseWork return true.

    Parameters

    • _delta: number

    Returns void

  • Functions to increase or decrease work and optimize the frame if needed. These are called if the associated canIncreaseWork or canDecreaseWork return true.

    Parameters

    • _delta: number

    Returns void

  • The optimize function is called whenever an optimization should take place, either to improve performance or quality. The delta argument is the amount of milliseconds difference between the target framerate and the current framerate. A negative value means that less work should be done to hit the target.

    The optimize function must return true if the setting was optimized and 'false' if no optimization could occur, ie the setting being optimized could not be turned down any further or is at the lowest acceptable setting. The second argument optimizer is the optimizer that is running the optimization.

    Parameters

    • delta: number

    Returns boolean

Generated using TypeDoc