mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
12 lines
172 B
GLSL
12 lines
172 B
GLSL
uniform mat4 u_MVPMatrix;
|
|
|
|
attribute vec4 a_position;
|
|
attribute vec4 a_color;
|
|
|
|
varying vec4 v_color;
|
|
|
|
void main()
|
|
{
|
|
v_color = a_color;
|
|
gl_Position = u_MVPMatrix * pos;
|
|
} |