You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets the underlying <see cref="T:SkiaSharp.SKImage" /> of the image source.
19
+
/// Gets or sets the underlying <see cref="SKImage" /> of the image source.
20
20
/// </summary>
21
21
publicSKImageImage
22
22
{
@@ -34,7 +34,7 @@ public override Task<bool> Cancel()
34
34
}
35
35
36
36
/// <summary>
37
-
/// Allows implicit casting from a <see cref="T:SkiaSharp.SKImage" />.
37
+
/// Allows implicit casting from a <see cref="SKImage" />.
38
38
/// </summary>
39
39
/// <param name="image">The image to use when creating the ImageSource.</param>
40
40
/// <returns>Returns a new instance of <see cref="SKImageImageSource" /> with the <see cref="SKImageImageSource.Image" /> property set to the image.</returns>
@@ -47,10 +47,10 @@ public static implicit operator SKImageImageSource(SKImage image)
47
47
}
48
48
49
49
/// <summary>
50
-
/// Allows implicit casting to a <see cref="T:SkiaSharp.SKImage" />.
50
+
/// Allows implicit casting to a <see cref="SKImage" />.
51
51
/// </summary>
52
52
/// <param name="source">The ImageSource to retrieve the image from.</param>
53
-
/// <returns>Returns the underlying <see cref="T:SkiaSharp.SKImage" /> of the ImageSource.</returns>
53
+
/// <returns>Returns the underlying <see cref="SKImage" /> of the ImageSource.</returns>
/// Gets or sets the underlying <see cref="T:SkiaSharp.SKBitmap" /> of the image source.
78
+
/// Gets or sets the underlying <see cref="SKBitmap" /> of the image source.
79
79
/// </summary>
80
80
publicSKBitmapBitmap
81
81
{
@@ -93,7 +93,7 @@ public override Task<bool> Cancel()
93
93
}
94
94
95
95
/// <summary>
96
-
/// Allows implicit casting from a <see cref="T:SkiaSharp.SKBitmap" />.
96
+
/// Allows implicit casting from a <see cref="SKBitmap" />.
97
97
/// </summary>
98
98
/// <param name="bitmap">The bitmap to use when creating the ImageSource.</param>
99
99
/// <returns>Returns a new instance of <see cref="SKBitmapImageSource" /> with the <see cref="SKBitmapImageSource.Bitmap" /> property set to the bitmap.</returns>
@@ -106,10 +106,10 @@ public static implicit operator SKBitmapImageSource(SKBitmap bitmap)
106
106
}
107
107
108
108
/// <summary>
109
-
/// Allows implicit casting to a <see cref="T:SkiaSharp.SKBitmap" />.
109
+
/// Allows implicit casting to a <see cref="SKBitmap" />.
110
110
/// </summary>
111
111
/// <param name="source">The ImageSource to retrieve the bitmap from.</param>
112
-
/// <returns>Returns the underlying <see cref="T:SkiaSharp.SKBitmap" /> of the ImageSource.</returns>
112
+
/// <returns>Returns the underlying <see cref="SKBitmap" /> of the ImageSource.</returns>
/// Gets or sets the underlying <see cref="T:SkiaSharp.SKPixmap" /> of the image source.
137
+
/// Gets or sets the underlying <see cref="SKPixmap" /> of the image source.
138
138
/// </summary>
139
139
publicSKPixmapPixmap
140
140
{
@@ -152,7 +152,7 @@ public override Task<bool> Cancel()
152
152
}
153
153
154
154
/// <summary>
155
-
/// Allows implicit casting from a <see cref="T:SkiaSharp.SKPixmap" />.
155
+
/// Allows implicit casting from a <see cref="SKPixmap" />.
156
156
/// </summary>
157
157
/// <param name="pixmap">The pixmap to use when creating the ImageSource.</param>
158
158
/// <returns>Returns a new instance of <see cref="SKPixmapImageSource" /> with the <see cref="SKPixmapImageSource.Pixmap" /> property set to the bitmap.</returns>
@@ -165,10 +165,10 @@ public static implicit operator SKPixmapImageSource(SKPixmap pixmap)
165
165
}
166
166
167
167
/// <summary>
168
-
/// Allows implicit casting to a <see cref="T:SkiaSharp.SKPixmap" />.
168
+
/// Allows implicit casting to a <see cref="SKPixmap" />.
169
169
/// </summary>
170
170
/// <param name="source">The ImageSource to retrieve the pixmap from.</param>
171
-
/// <returns>Returns the underlying <see cref="T:SkiaSharp.SKPixmap" /> of the ImageSource.</returns>
171
+
/// <returns>Returns the underlying <see cref="SKPixmap" /> of the ImageSource.</returns>
/// The view only redraws the surface when the it is created, resized, or when <see cref="M:SkiaSharp.Views.Tizen.CustomRenderingView.Invalidate" /> is called.
/// Gets or sets a value indicating whether the drawing canvas should be resized on high resolution displays.
24
+
/// </summary>
25
+
/// <remarks>By default, when <see langword="false" />, the canvas is resized to 1 canvas pixel per display pixel. When <see langword="true" />, the canvas is resized to device independent pixels, and then stretched to fill the view. Although performance is improved and all objects are the same size on different display densities, blurring and pixelation may occur.</remarks>
19
26
publicboolIgnorePixelScaling
20
27
{
21
28
get=>ignorePixelScaling;
@@ -30,6 +37,25 @@ public bool IgnorePixelScaling
30
37
}
31
38
}
32
39
40
+
/// <summary>
41
+
/// Occurs when the surface needs to be redrawn.
42
+
/// </summary>
43
+
/// <remarks>There are two ways to draw on this surface: by overriding the
0 commit comments