mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-18 04:33:19 +08:00
20 lines
310 B
C#
20 lines
310 B
C#
using CPF.Mac.ObjCRuntime;
|
|
using System;
|
|
|
|
namespace CPF.Mac.CoreImage
|
|
{
|
|
[Since(6, 0)]
|
|
public class CISourceOverCompositing : CICompositingFilter
|
|
{
|
|
public CISourceOverCompositing()
|
|
: base("CISourceOverCompositing")
|
|
{
|
|
}
|
|
|
|
public CISourceOverCompositing(IntPtr handle)
|
|
: base(handle)
|
|
{
|
|
}
|
|
}
|
|
}
|