@@ -1 +1 @@
-Subproject commit 3afa69b40c494569b6337e1f892eacf906145a81
+Subproject commit ffe1fe7743584bd32cc6b3f6316b13727c21e5fa
@@ -45,8 +45,8 @@ public class EllipseVectorData : ShapeVectorData, IReadOnlyEllipseData
saved = drawingSurface.Canvas.Save();
ApplyTransformTo(drawingSurface);
}
-
- using Paint shapePaint = new Paint();
+
+ using Paint shapePaint = new Paint() { IsAntiAliased = true };
shapePaint.Color = FillColor;
shapePaint.Style = PaintStyle.Fill;
@@ -55,7 +55,7 @@ public class LineVectorData(VecD startPos, VecD pos) : ShapeVectorData, IReadOnl
- using Paint paint = new Paint();
+ using Paint paint = new Paint() { IsAntiAliased = true };
paint.Color = StrokeColor;
paint.Style = PaintStyle.Stroke;
@@ -44,7 +44,7 @@ public class RectangleVectorData : ShapeVectorData, IReadOnlyRectangleData
paint.Color = FillColor;
paint.Style = PaintStyle.Fill;
@@ -1,9 +0,0 @@
-using Avalonia.Threading;
-using Drawie.Backend.Core;
-namespace PixiEditor.Views.Rendering;
-public class AvaloniaRenderingDispatcher : IRenderingDispatcher
-{
- public Action<Action> Invoke { get; } = action => Dispatcher.UIThread.Invoke(action);
-}