BLENDFUNCTION (Structures)
Last changed: 157.41.240.238

.
Summary
TODO - a short description

C# Definition:

[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;

VB Definition:

Structure BLENDFUNCTION
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation