space-game001/default.fragment
2023-12-03 21:10:02 +03:00

10 lines
150 B
Plaintext
Executable File

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