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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|