gl-react-color-matrix ![](https://img.shields.io/badge/gl--react->= 2.1-05F561.svg)
Universal gl-react color-matrix effect
children
(required): the content to color-matrix.matrix
(required): an array of 16 numbers that represents a 4x4 color matrix (rgba x rgba).
var ColorMatrix = require("gl-react-color-matrix").ColorMatrix;
// or
import {ColorMatrix} from "gl-react-color-matrix";
<ColorMatrix matrix={[
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1
]}>
...
</ColorMatrix>
<ColorMatrix matrix={[
1, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 1
]}>
...
</ColorMatrix>
<ColorMatrix matrix={[
.3, .3, .3, 0,
.6, .6, .6, 0,
.1, .1, .1, 0,
0, 0, 0, 1
]}>
...
</ColorMatrix>