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
/// Attemts to capture the current frame showed on the <see cref="Display"/>.
22
+
/// </summary>
23
+
/// <returns><c>true</c> if the current frame was captures successfully; otherwise, <c>false</c>.</returns>
24
+
boolCaptureScreen();
25
+
26
+
/// <summary>
27
+
/// Creates a new <see cref="CaptureScreen"/> for this <see cref="IScreenCapture"/>.
28
+
/// </summary>
29
+
/// <param name="x">The x-location of the region to capture (must be >= 0 and < screen-width).</param>
30
+
/// <param name="y">The y-location of the region to capture (must be >= 0 and < screen-height).</param>
31
+
/// <param name="width">The width of the region to capture (must be >= 0 and this + x must be <= screen-width).</param>
32
+
/// <param name="height">The height of the region to capture (must be >= 0 and this + y must be <= screen-height).</param>
33
+
/// <param name="downscaleLevel">The level of downscaling applied to the image of this region before copying to local memory. The calculation is (width and height)/2^downscaleLevel.</param>
34
+
/// <returns>The new <see cref="CaptureScreen"/>.</returns>
/// <param name="x">The new x-location of the region to capture (must be >= 0 and < screen-width).</param>
52
+
/// <param name="y">The new y-location of the region to capture (must be >= 0 and < screen-height).</param>
53
+
/// <param name="width">The width of the region to capture (must be >= 0 and this + x must be <= screen-width).</param>
54
+
/// <param name="height">The new height of the region to capture (must be >= 0 and this + y must be <= screen-height).</param>
55
+
/// <param name="downscaleLevel">The new level of downscaling applied to the image of this region before copying to local memory. The calculation is (width and height)/2^downscaleLevel.</param>
/// Attemts to capture the current frame showed on the <see cref="Display"/>.
22
-
/// </summary>
23
-
/// <returns><c>true</c> if the current frame was captures successfully; otherwise, <c>false</c>.</returns>
24
-
boolCaptureScreen();
25
-
26
-
/// <summary>
27
-
/// Creates a new <see cref="CaptureScreen"/> for this <see cref="IScreenCapture"/>.
28
-
/// </summary>
29
-
/// <param name="x">The x-location of the region to capture (must be >= 0 and < screen-width).</param>
30
-
/// <param name="y">The y-location of the region to capture (must be >= 0 and < screen-height).</param>
31
-
/// <param name="width">The width of the region to capture (must be >= 0 and this + x must be <= screen-width).</param>
32
-
/// <param name="height">The height of the region to capture (must be >= 0 and this + y must be <= screen-height).</param>
33
-
/// <param name="downscaleLevel">The level of downscaling applied to the image of this region before copying to local memory. The calculation is (width and height)/2^downscaleLevel.</param>
34
-
/// <returns>The new <see cref="CaptureScreen"/>.</returns>
/// <param name="x">The new x-location of the region to capture (must be >= 0 and < screen-width).</param>
52
-
/// <param name="y">The new y-location of the region to capture (must be >= 0 and < screen-height).</param>
53
-
/// <param name="width">The width of the region to capture (must be >= 0 and this + x must be <= screen-width).</param>
54
-
/// <param name="height">The new height of the region to capture (must be >= 0 and this + y must be <= screen-height).</param>
55
-
/// <param name="downscaleLevel">The new level of downscaling applied to the image of this region before copying to local memory. The calculation is (width and height)/2^downscaleLevel.</param>
0 commit comments