1964js/shaders/tile-fragment.shader
Derek "Turtle" Roe 8b7996442b See long description
Add .gitattributes
Add .gitignore
Update README to GitHub-flavored Markdown
Fix shader files on Windows and on systems that don't handle files
without extensions well
2016-01-02 00:42:39 -06:00

7 lines
No EOL
184 B
GLSL

precision mediump float;
varying vec2 vTextureCoord;
uniform sampler2D uSampler;
void main(void) {
gl_FragColor = texture2D(uSampler, vec2(vTextureCoord.s, vTextureCoord.t));
}