Jumar Macato
5 years ago
No known key found for this signature in database
GPG Key ID: B19884DAC3A5BF3F
2 changed files with
2 additions and
3 deletions
-
src/Avalonia.Visuals/Platform/IDrawingContextImpl.cs
-
src/Avalonia.Visuals/Platform/IGeometryImpl.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>
|
|
|
|
|
|
|
|
@ -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); |
|
|
|
} |
|
|
|
} |
|
|
|
|