diff --git a/samples/RenderTest/App.xaml.cs b/samples/RenderTest/App.xaml.cs index 4492e5ae4c..fd2b940f6a 100644 --- a/samples/RenderTest/App.xaml.cs +++ b/samples/RenderTest/App.xaml.cs @@ -2,6 +2,7 @@ // Licensed under the MIT license. See licence.md file in the project root for full license information. using Avalonia; +using Avalonia.Logging.Serilog; using Avalonia.Markup.Xaml; namespace RenderTest @@ -12,5 +13,17 @@ namespace RenderTest { AvaloniaXamlLoader.Load(this); } + + // TODO: Make this work with GTK/Skia/Cairo depending on command-line args + // again. + static void Main(string[] args) => BuildAvaloniaApp().Start(); + + // App configuration, used by the entry point and previewer + static AppBuilder BuildAvaloniaApp() + => AppBuilder.Configure() + .UsePlatformDetect() + .UseReactiveUI() + .LogToDebug(); + } } diff --git a/samples/RenderTest/Pages/AnimationsPage.xaml b/samples/RenderTest/Pages/AnimationsPage.xaml index e478f45fef..49ee20a685 100644 --- a/samples/RenderTest/Pages/AnimationsPage.xaml +++ b/samples/RenderTest/Pages/AnimationsPage.xaml @@ -37,11 +37,13 @@ - + + - + + @@ -73,14 +75,14 @@ - + Hover to activate Transform Keyframe Animations.