Module BLEND_MODES-PIXI

include { ... };
type t =
| Normal
| Add
| Multiply
| Screen
| Overlay
| Darken
| Lighten
| Color_dodge
| Color_burn
| Hard_light
| Soft_light
| Difference
| Exclusion
| Hue
| Saturation
| Color
| Luminosity
| Normal_npm
| Add_npm
| Screen_npm
| None
| Src_in
| Src_out
| Src_atop
| Dst_over
| Dst_in
| Dst_out
| Dst_atop
| Subtract
;

Various blend modes supported by PIXI.

include { ... };
let tToJs: t => int;
let tFromJs: int => option(t);
let normal: int;
let add: int;
let multiply: int;
let screen: int;
let overlay: int;
let darken: int;
let lighten: int;
let color_dodge: int;
let color_burn: int;
let hard_light: int;
let soft_light: int;
let difference: int;
let exclusion: int;
let hue: int;
let saturation: int;
let color: int;
let luminosity: int;
let normal_npm: int;
let add_npm: int;
let screen_npm: int;
let none: int;
let src_over: int;
let src_in: int;
let src_out: int;
let src_atop: int;
let dst_over: int;
let dst_in: int;
let dst_out: int;
let dst_atop: int;
let erase: int;
let subtract: int;