You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
470 B

using System.Runtime.InteropServices;
namespace Apewer.Internals.Interop
{
/// <summary></summary>
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct BlendFunction
{
/// <summary></summary>
public byte blendop;
/// <summary></summary>
public byte blendflags;
/// <summary></summary>
public byte sourceconstantalpha;
/// <summary></summary>
public byte alphaformat;
}
}