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 / texture1d.frag
Size: Mime:
#ifdef GL_ES
precision highp float;
#endif

uniform sampler2D tex;
varying vec2 tc;

void main()
{
	gl_FragColor = texture2D(tex, tc);  // Second component is irrelevant.
}