Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
shotcut / opt / Shotcut.app / share / movit / white_balance_effect.frag
Size: Mime:
// Implicit uniforms:
// uniform mat3 PREFIX(correction_matrix);

vec4 FUNCNAME(vec2 tc) {
	vec4 ret = INPUT(tc);
	ret.rgb = PREFIX(correction_matrix) * ret.rgb;
	return ret;
}