2021-02-19 02:14:54 +00:00
|
|
|
#version 450
|
2022-05-24 15:17:57 +00:00
|
|
|
#extension GL_GOOGLE_include_directive : enable
|
|
|
|
|
|
|
|
#include "entity.h"
|
2021-02-19 02:14:54 +00:00
|
|
|
|
|
|
|
layout (set = 0, binding = 0) uniform Matrices {
|
2021-12-08 07:44:22 +00:00
|
|
|
mat4 Projection3d;
|
2021-02-19 02:14:54 +00:00
|
|
|
mat4 View;
|
|
|
|
mat4 Sky;
|
2021-12-08 07:44:22 +00:00
|
|
|
mat4 Projection2d;
|
2021-02-19 02:14:54 +00:00
|
|
|
};
|
|
|
|
|
2022-05-24 15:17:57 +00:00
|
|
|
layout (set = 1, binding = 0) buffer Entities {
|
|
|
|
Entity entities[];
|
2021-02-19 02:14:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
layout (location = 0) in vec4 vertex;
|
|
|
|
layout (location = 1) in vec4 tl_uv;
|
2022-05-24 15:17:57 +00:00
|
|
|
layout (location = 2) in uint entid;
|
2021-02-19 02:14:54 +00:00
|
|
|
|
|
|
|
layout (location = 0) out vec4 tl_st;
|
|
|
|
layout (location = 1) out vec3 direction;
|
|
|
|
|
|
|
|
void
|
|
|
|
main (void)
|
|
|
|
{
|
2021-02-25 04:46:33 +00:00
|
|
|
// geometry shader will take care of Projection and View
|
2022-05-24 15:17:57 +00:00
|
|
|
vec3 vert = vertex * entities[entid].transform;
|
|
|
|
gl_Position = vec4 (vert, 1);
|
2021-02-19 02:14:54 +00:00
|
|
|
direction = (Sky * vertex).xyz;
|
|
|
|
tl_st = tl_uv;
|
|
|
|
}
|