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
parent
commit
a747f17756
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/Avalonia.Base/Platform/ITextShaperImpl.cs
  2. 2
      src/Avalonia.Base/Rendering/DeferredRenderer.cs
  3. 2
      src/Avalonia.Base/Rendering/ImmediateRenderer.cs
  4. 1
      src/Skia/Avalonia.Skia/Helpers/ImageSavingHelper.cs

1
src/Avalonia.Base/Platform/ITextShaperImpl.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);

2
src/Avalonia.Base/Rendering/DeferredRenderer.cs

@ -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>

2
src/Avalonia.Base/Rendering/ImmediateRenderer.cs

@ -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)
{

1
src/Skia/Avalonia.Skia/Helpers/ImageSavingHelper.cs

@ -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

Loading…
Cancel
Save