Browse Source

address review

pull/5683/head
Jumar Macato 5 years ago
parent
commit
ae034cf212
No known key found for this signature in database GPG Key ID: B19884DAC3A5BF3F
  1. 3
      src/Avalonia.Visuals/Platform/IDrawingContextImpl.cs
  2. 2
      src/Avalonia.Visuals/Platform/IGeometryImpl.cs

3
src/Avalonia.Visuals/Platform/IDrawingContextImpl.cs

@ -30,7 +30,6 @@ namespace Avalonia.Platform
/// <param name="sourceRect">The rect in the image to draw.</param>
/// <param name="destRect">The rect in the output to draw to.</param>
/// <param name="bitmapInterpolationMode">The bitmap interpolation mode.</param>
/// <param name="bitmapBlendMode">The bitmap blending mode.</param>
void DrawBitmap(IRef<IBitmapImpl> source, double opacity, Rect sourceRect, Rect destRect, BitmapInterpolationMode bitmapInterpolationMode = BitmapInterpolationMode.Default);
/// <summary>
@ -153,7 +152,7 @@ namespace Avalonia.Platform
/// <summary>
/// Pushes an bitmap blending value.
/// </summary>
/// <param name="opacity">The opacity.</param>
/// <param name="blendingMode">The bitmap blending mode.</param>
void PushBitmapBlendMode(BitmapBlendingMode blendingMode);
/// <summary>

2
src/Avalonia.Visuals/Platform/IGeometryImpl.cs

@ -85,6 +85,6 @@ namespace Avalonia.Platform
/// <param name="startOnBeginFigure">If ture, the resulting snipped path will start with a BeginFigure call.</param>
/// <param name="segmentGeometry">The resulting snipped path.</param>
/// <returns>If the snipping operation is successful.</returns>
bool TryGetSegment (double startDistance, double stopDistance, bool startOnBeginFigure, out IGeometryImpl segmentGeometry);
bool TryGetSegment(double startDistance, double stopDistance, bool startOnBeginFigure, out IGeometryImpl segmentGeometry);
}
}

Loading…
Cancel
Save