setAntiAliasing method
Implementation
@override
Future setAntiAliasing(bool msaa, bool fxaa, bool taa) async {
if (!FILAMENT_SINGLE_THREADED && IS_WINDOWS && msaa) {
throw Exception("MSAA is not currently supported on Windows");
}
View_setAntiAliasing(view.view, msaa, fxaa, taa);
}