mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 10:42:00 +08:00
18 lines
254 B
C#
18 lines
254 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.CoreImage
|
||
|
{
|
||
|
public class CILuminosityBlendMode : CIBlendFilter
|
||
|
{
|
||
|
public CILuminosityBlendMode()
|
||
|
: base("CILuminosityBlendMode")
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public CILuminosityBlendMode(IntPtr handle)
|
||
|
: base(handle)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|