Module OgamlGraphics.DrawParameter.BlendMode.Equation

Blending equations enumeration

This module consists of only one type enumerating openGL blending equations

type t = None | Add of (Factor.t * Factor.t) | Sub of (Factor.t * Factor.t)
Blending equations

Possible values

None
Default equation, replaces the old color by the new one
Add of (Factor.t * Factor.t)
Sub of (Factor.t * Factor.t)

See : OgamlGraphics.DrawParameter.BlendMode.Factor