mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
20 lines
277 B
C#
20 lines
277 B
C#
using CPF.Mac.ObjCRuntime;
|
|
using System;
|
|
|
|
namespace CPF.Mac.CoreImage
|
|
{
|
|
[Since(6, 0)]
|
|
public class CICircularScreen : CIScreenFilter
|
|
{
|
|
public CICircularScreen()
|
|
: base("CICircularScreen")
|
|
{
|
|
}
|
|
|
|
public CICircularScreen(IntPtr handle)
|
|
: base(handle)
|
|
{
|
|
}
|
|
}
|
|
}
|