mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
821ab80c5b
Former-commit-id: aed1fff25f7fd95fe040b0877011cbe57e77eba3
28 lines
329 B
GLSL
28 lines
329 B
GLSL
#version 330 core
|
|
|
|
in vec2 v_pos;
|
|
|
|
layout (std140)
|
|
uniform u_locals {
|
|
vec4 nul;
|
|
};
|
|
|
|
layout (std140)
|
|
uniform u_globals {
|
|
mat4 view_mat;
|
|
mat4 proj_mat;
|
|
vec4 cam_pos;
|
|
vec4 focus_pos;
|
|
vec4 view_distance;
|
|
vec4 time_of_day;
|
|
vec4 tick;
|
|
};
|
|
|
|
out vec2 f_pos;
|
|
|
|
void main() {
|
|
f_pos = v_pos;
|
|
|
|
gl_Position = vec4(v_pos, 0.0, 1.0);
|
|
}
|