Fix typo in effects/shaders/chromakey.frag

Fix typo pointed out by @brimsonbhin.
This commit is contained in:
Troy James Sobotka
2019-04-29 17:40:02 -07:00
committed by GitHub
parent 5e060d3d29
commit e5152bc0c0
+1 -1
View File
@@ -22,7 +22,7 @@ float rgb2y (vec3 c) {
// 0.2126 R, 0.7152 G, and 0.722 B. Easy change.
// The coefficients for YCbCr are calculated off of the
// REC.709 values.
return (0.2126*c.r + 0.7152*c.g + 0.0.722*c.b);
return (0.2126*c.r + 0.7152*c.g + 0.0722*c.b);
}
float rgb2cb (vec3 c) {