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

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