Skip to content

Commit

Permalink
Merge pull request #101 from zbanks/yuvchansep-fragcolor
Browse files Browse the repository at this point in the history
#100: Replace gl_FragColor with fragColor
  • Loading branch information
ervanalb authored Jul 30, 2019
2 parents 05e99ff + eed768a commit fe75ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/library/effects/yuvchansep.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ void main(void) {
//float a_out = 1. - (1. - rgb.r) * (1. - rgb.g) * (1. - rgb.b);
float a_out = yImage.a;

gl_FragColor = premultiply(vec4(rgb, a_out));
fragColor = premultiply(vec4(rgb, a_out));
}

0 comments on commit fe75ab6

Please sign in to comment.