mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 01:46:22 +08:00
18 lines
250 B
C#
18 lines
250 B
C#
using System;
|
|
|
|
namespace CPF.Mac.CoreImage
|
|
{
|
|
public class CISoftLightBlendMode : CIBlendFilter
|
|
{
|
|
public CISoftLightBlendMode()
|
|
: base("CISoftLightBlendMode")
|
|
{
|
|
}
|
|
|
|
public CISoftLightBlendMode(IntPtr handle)
|
|
: base(handle)
|
|
{
|
|
}
|
|
}
|
|
}
|