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

17 lines
351 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 BrightnessEffect
{
public BrightnessEffect(Device3 device) : base(IntPtr.Zero)
{
device.CreateBrightnessEffect(this);
}
}
}