Browse Source
Merge pull request #9688 from workgroupengineering/fixes/Warnings/XML-Comment
fix: XML Comment
pull/9694/head
Max Katz
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
6 additions and
0 deletions
-
src/Avalonia.Base/Platform/ITextShaperImpl.cs
-
src/Avalonia.Base/Rendering/DeferredRenderer.cs
-
src/Avalonia.Base/Rendering/ImmediateRenderer.cs
-
src/Skia/Avalonia.Skia/Helpers/ImageSavingHelper.cs
|
|
|
@ -13,6 +13,7 @@ namespace Avalonia.Platform |
|
|
|
/// Shapes the specified region within the text and returns a shaped buffer.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="text">The text buffer.</param>
|
|
|
|
/// <param name="length">The length of text.</param>
|
|
|
|
/// <param name="options">Text shaper options to customize the shaping process.</param>
|
|
|
|
/// <returns>A shaped glyph run.</returns>
|
|
|
|
ShapedBuffer ShapeText(CharacterBufferReference text, int length, TextShaperOptions options); |
|
|
|
|
|
|
|
@ -49,6 +49,8 @@ namespace Avalonia.Rendering |
|
|
|
/// </summary>
|
|
|
|
/// <param name="root">The control to render.</param>
|
|
|
|
/// <param name="renderLoop">The render loop.</param>
|
|
|
|
/// <param name="renderTargetFactory">The target render factory.</param>
|
|
|
|
/// <param name="renderInterface">The Platform Render Context.</param>
|
|
|
|
/// <param name="sceneBuilder">The scene builder to use. Optional.</param>
|
|
|
|
/// <param name="dispatcher">The dispatcher to use. Optional.</param>
|
|
|
|
/// <param name="rendererLock">Lock object used before trying to access render target</param>
|
|
|
|
|
|
|
|
@ -30,6 +30,8 @@ namespace Avalonia.Rendering |
|
|
|
/// Initializes a new instance of the <see cref="ImmediateRenderer"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="root">The control to render.</param>
|
|
|
|
/// <param name="renderTargetFactory">The target render factory.</param>
|
|
|
|
/// <param name="renderContext">The render contex.</param>
|
|
|
|
public ImmediateRenderer(Visual root, Func<IRenderTarget> renderTargetFactory, |
|
|
|
PlatformRenderInterfaceContextManager? renderContext = null) |
|
|
|
{ |
|
|
|
|
|
|
|
@ -34,6 +34,7 @@ namespace Avalonia.Skia.Helpers |
|
|
|
/// Save Skia image to a stream.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="image">Image to save</param>
|
|
|
|
/// <param name="stream">The output stream to save the image.</param>
|
|
|
|
/// <param name="quality">
|
|
|
|
/// The optional quality for PNG compression.
|
|
|
|
/// The quality value is interpreted from 0 - 100. If quality is null
|
|
|
|
|