space-game001/resources/shaders/default_texture_web.fragment
2026-02-02 13:50:43 +06:00

9 lines
164 B
Plaintext

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