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