effectiveAntiAliasingMode property

AntiAliasingMode get effectiveAntiAliasingMode

The anti-aliasing technique that actually runs when this Scene renders.

Resolves the requested antiAliasingMode against backend support: AntiAliasingMode.auto becomes AntiAliasingMode.msaa where offscreen MSAA is supported and AntiAliasingMode.fxaa otherwise, and an unsupported AntiAliasingMode.msaa request also resolves to AntiAliasingMode.fxaa. Never returns AntiAliasingMode.auto.

Implementation

AntiAliasingMode get effectiveAntiAliasingMode =>
    _resolveAntiAliasingMode(_antiAliasingMode);