Interface WTCGLBlendFunction

Represents a collection of all of the properties that make up a complete blending function.

interface WTCGLBlendFunction {
    dst: number;
    dstAlpha?: number;
    src: number;
    srcAlpha?: number;
}

Properties

dst: number

The destination blend function

dstAlpha?: number

The destination blend function for alpha blending

src: number

The source blend function

srcAlpha?: number

The source blend function for alpha blending