This commit is contained in:
Wiesław Šoltés 2022-06-09 14:09:59 +02:00
Родитель 59066dcf7e
Коммит 570bf52077
1 изменённых файлов: 21 добавлений и 1 удалений

Просмотреть файл

@ -13,5 +13,25 @@ class Program
=> AppBuilder.Configure<App>()
.UsePlatformDetect()
.UseSkia()
.With(new Win32PlatformOptions()
{
AllowEglInitialization = true,
UseWindowsUIComposition = true,
UseDeferredRendering = true
})
.With(new X11PlatformOptions()
{
UseGpu = true,
UseDeferredRendering = true
})
.With(new AvaloniaNativePlatformOptions()
{
UseGpu = true,
UseDeferredRendering = true
})
.With(new MacOSPlatformOptions()
{
ShowInDock = true
})
.LogToTrace();
}
}