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 / mirror_effect.frag
Size: Mime:
// Mirrors the image horizontally.
vec4 FUNCNAME(vec2 tc)
{
	tc.x = 1.0 - tc.x;
	return INPUT(tc);
}