mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-12-15 15:20:57 -08:00
13 lines
223 B
GLSL
Executable file
13 lines
223 B
GLSL
Executable file
attribute vec4 a_position;
|
|
attribute vec3 a_normal;
|
|
|
|
uniform mat4 u_proj;
|
|
uniform mat4 u_trans;
|
|
uniform vec4 u_color;
|
|
|
|
varying vec4 v_col;
|
|
|
|
void main(){
|
|
v_col = vec4(1.0);
|
|
gl_Position = u_proj * u_trans * a_position;
|
|
}
|