agrobot_base/Exemplos/SharpDX-master/Source/SharpDX.DirectComposition/HueRotationEffect.cs

17 lines
354 B
C#
Raw Normal View History

2023-08-31 11:50:53 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharpDX.DirectComposition
{
public partial class HueRotationEffect
{
public HueRotationEffect(Device3 device) : base(IntPtr.Zero)
{
device.CreateHueRotationEffect(this);
}
}
}