2019-02-20 15:23:23 +01:00
|
|
|
#version 110
|
|
|
|
|
2019-02-28 09:04:17 +01:00
|
|
|
attribute vec4 v_position;
|
2019-02-20 15:23:23 +01:00
|
|
|
attribute vec2 v_tex_coords;
|
|
|
|
|
|
|
|
varying vec2 tex_coords;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2019-02-28 09:04:17 +01:00
|
|
|
gl_Position = gl_ProjectionMatrix * gl_ModelViewMatrix * v_position;
|
2019-02-20 15:23:23 +01:00
|
|
|
tex_coords = v_tex_coords;
|
2019-02-28 09:04:17 +01:00
|
|
|
}
|