Type alias OptimizerOptions

OptimizerOptions: {
    continuallyRefine: boolean;
    increaseWork: boolean;
    interval: number;
    margin: number;
    maxFrameSamples: number;
    maxWaitFrames: number;
    targetFramerate: number | null;
    targetMillis: number;
    waitMillis: number;
}

The options for the optimizer.

Type declaration

  • continuallyRefine: boolean

    By default the optimizer will stop trying to optimize and optimization the page once the target framerate is hit or no more optimizations can run and will never try to improve quality of the page again after the first iteration.

    This option allows the optimizer to ping pong between improving performance and quality continually to keep a steady framerate.

    Note that this may not be a good option when using "expensive" optimizations that may stall the frame for a moment, like compiling shaders.

    Default

    false
    
  • increaseWork: boolean

    Whether the optimizer should ever try to increase the amount of work done at the cost of framerate. After the quality improvements are made the optimizer tries to improve the framerate until the target framerate is met.

    Default

    false
    
  • interval: number

    How often to perform a check sample the average framerate to try to optimize in milliseconds.

    Default

    500 (half a second)
    
  • margin: number

    How far outside of the target framerate must be in order for an optimization to occurs.

    Default

    0.05 (5%)
    
  • maxFrameSamples: number

    At most how many frames can run before an optimization should occur. This is useful when code may not run consistently but runs as needed, meaning that checking after a fixed amount of time might mean that an inconsistent or no actual iterations has occurred. Interval should probably be set to Infinity in this case.

    Default

    Infinity
    
  • maxWaitFrames: number

    At most how many frames to wait for.

    Default

    Infinity
    
  • targetFramerate: number | null

    The target framerate to hit. This overrides targetMillis if it is set.

    Default

    null
    
  • targetMillis: number

    The target milliseconds to hit in the enclosed code block. This cannot be less than 16.66... because browser caps the framerate to 60 frames per second. If this is less than that the optimizer will continually decrease quality to try to get performance up.

    Default

    16.66...
    
  • waitMillis: number

    The amount of time to wait between sampling frames for a new optimization. This is useful when an optimization may cause the framerate to drop for a frame or two -- such as with allocating a lot of new memory or new webgl render targets.

    Default

    0
    

Generated using TypeDoc