mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-05 23:26:03 +00:00
4cd7dd77c1
This was SVN commit r15680.
16 lines
191 B
GLSL
16 lines
191 B
GLSL
#version 110
|
|
|
|
uniform mat4 transform;
|
|
|
|
varying vec2 v_tex;
|
|
|
|
attribute vec3 a_vertex;
|
|
attribute vec2 a_uv0;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = transform * vec4(a_vertex, 1.0);
|
|
|
|
v_tex = a_uv0;
|
|
}
|