mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-05 18:06:54 +00:00
4cd7dd77c1
This was SVN commit r15680.
11 lines
115 B
GLSL
11 lines
115 B
GLSL
#version 110
|
|
|
|
uniform sampler2D tex;
|
|
|
|
varying vec2 v_tex;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(tex, v_tex);
|
|
}
|