mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-20 02:29:48 +08:00
18 lines
242 B
C#
18 lines
242 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.CoreImage
|
||
|
{
|
||
|
public class CILightenBlendMode : CIBlendFilter
|
||
|
{
|
||
|
public CILightenBlendMode()
|
||
|
: base("CILightenBlendMode")
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public CILightenBlendMode(IntPtr handle)
|
||
|
: base(handle)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|