Skip to content

Commit

Permalink
#100: Replace gl_FragColor with fragColor
Browse files Browse the repository at this point in the history
  • Loading branch information
zbanks committed Jul 29, 2019
1 parent 05e99ff commit eed768a
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 eed768a

Please sign in to comment.