2021-01-18 08:13:52 +00:00
|
|
|
#version 450
|
|
|
|
|
|
|
|
layout (set = 0, binding = 0) uniform Matrices {
|
|
|
|
mat4 Projection;
|
|
|
|
mat4 View;
|
|
|
|
mat4 Sky;
|
|
|
|
};
|
|
|
|
|
|
|
|
layout (push_constant) uniform PushConstants {
|
|
|
|
mat4 Model;
|
|
|
|
};
|
|
|
|
|
|
|
|
layout (location = 0) in vec4 vertex;
|
|
|
|
layout (location = 1) in vec4 tl_uv;
|
|
|
|
|
|
|
|
layout (location = 0) out vec4 tl_st;
|
2021-01-19 16:25:54 +00:00
|
|
|
layout (location = 1) out vec3 direction;
|
2021-01-18 08:13:52 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
main (void)
|
|
|
|
{
|
|
|
|
gl_Position = Projection * (View * (Model * vertex));
|
2021-01-21 17:20:32 +00:00
|
|
|
direction = vertex.xyz;//(Sky * vertex).xyz;
|
2021-01-18 08:13:52 +00:00
|
|
|
tl_st = tl_uv;
|
|
|
|
}
|