[StructLayout(LayoutKind.Sequential)]
public struct BLENDFUNCTION
{
byte BlendOp;
byte BlendFlags;
byte SourceConstantAlpha;
byte AlphaFormat;
public BLENDFUNCTION(byte op, byte flags, byte alpha, byte format)
{
BlendOp = op;
BlendFlags = flags;
SourceConstantAlpha = alpha;
AlphaFormat = format;
}
}
//
// currentlly defined blend operation
//
const int AC_SRC_OVER = 0x00;
//
// currentlly defined alpha format
//
const int AC_SRC_ALPHA = 0x01;
Structure BLENDFUNCTION
Public TODO
End Structure
None.
None.