mirror of
https://github.com/Anuken/Mindustry.git
synced 2026-01-24 05:21:15 -08:00
12 lines
192 B
GLSL
Executable file
12 lines
192 B
GLSL
Executable file
attribute vec4 a_position;
|
|
attribute vec3 a_normal;
|
|
attribute vec4 a_color;
|
|
|
|
uniform mat4 u_proj;
|
|
|
|
varying vec4 v_col;
|
|
|
|
void main(){
|
|
v_col = a_color;
|
|
gl_Position = u_proj * a_position;
|
|
}
|