This commit is contained in:
Matthew Leibowitz 2016-10-26 04:18:44 +02:00
Родитель e437b0f790
Коммит 6ac8a34ab5
1 изменённых файлов: 22 добавлений и 0 удалений

Просмотреть файл

@ -178,6 +178,28 @@ namespace SkiaSharp
SkiaApi.sk_canvas_clip_path_with_operation (Handle, path.Handle, operation, antialias);
}
public SKRect ClipBounds {
get {
var bounds = SKRect.Empty;
if (GetClipBounds (ref bounds)) {
return bounds;
} else {
return SKRect.Empty;
}
}
}
public SKRectI ClipDeviceBounds {
get {
var bounds = SKRectI.Empty;
if (GetClipDeviceBounds (ref bounds)) {
return bounds;
} else {
return SKRectI.Empty;
}
}
}
public bool GetClipBounds (ref SKRect bounds)
{
return SkiaApi.sk_canvas_get_clip_bounds(Handle, ref bounds);