From 67ff1a7cd1e4be0a70357dc7d45cc6face2ab12d Mon Sep 17 00:00:00 2001 From: robloo Date: Sun, 3 Apr 2022 13:28:10 -0400 Subject: [PATCH] Add missing comment for SupportsIndividualRoundRects --- src/Avalonia.Visuals/Platform/IPlatformRenderInterface.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Avalonia.Visuals/Platform/IPlatformRenderInterface.cs b/src/Avalonia.Visuals/Platform/IPlatformRenderInterface.cs index e4a280938d..acf103b893 100644 --- a/src/Avalonia.Visuals/Platform/IPlatformRenderInterface.cs +++ b/src/Avalonia.Visuals/Platform/IPlatformRenderInterface.cs @@ -168,6 +168,9 @@ namespace Avalonia.Platform /// IGlyphRunImpl CreateGlyphRun(GlyphRun glyphRun); + /// + /// Gets a value indicating whether the platform supports rectangles with rounded corners. + /// bool SupportsIndividualRoundRects { get; } ///