2022-12-14 01:20:12 +08:00
|
|
|
#version 450
|
|
|
|
#extension GL_KHR_vulkan_glsl : enable
|
|
|
|
|
2022-12-15 01:45:44 +08:00
|
|
|
layout(location = 0) in vec3 aVertexPos;
|
2022-12-14 01:20:12 +08:00
|
|
|
layout(location = 1) in mat4 worldTransform;
|
|
|
|
layout(location = 5) in vec4 color;
|
|
|
|
|
|
|
|
// Output
|
|
|
|
layout(location = 0) out struct
|
|
|
|
{
|
|
|
|
vec4 Color;
|
|
|
|
} Out;
|
|
|
|
|
2022-12-28 20:47:20 +08:00
|
|
|
layout(set = 1, binding = 0) uniform CameraData
|
2022-12-14 01:20:12 +08:00
|
|
|
{
|
|
|
|
vec4 position;
|
|
|
|
mat4 vpMat;
|
|
|
|
mat4 viewMat;
|
2022-12-28 10:22:01 +08:00
|
|
|
mat4 projMat;
|
2022-12-14 01:20:12 +08:00
|
|
|
} cameraData;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_Position = cameraData.vpMat * worldTransform * vec4 (aVertexPos.xyz, 1.0f);
|
|
|
|
Out.Color = color;
|
|
|
|
}
|