space-game001/default.fragment
2023-12-03 22:18:33 +03:00

11 lines
176 B
Plaintext
Executable File

precision mediump float;
uniform sampler2D Texture;
varying vec2 texCoord;
void main()
{
vec4 color = texture2D(Texture,texCoord).rgba;
gl_FragColor = color;
}