vulkan-tutorial/shaders/shader.vert

21 lines
472 B
GLSL
Raw Permalink Normal View History

2023-04-06 15:28:09 -04:00
#version 450
2023-04-13 10:14:10 -04:00
layout(binding = 0) uniform UniformBufferObject {
mat4 model;
mat4 view;
mat4 proj;
} ubo;
2023-04-19 10:55:49 -04:00
layout(location = 0) in vec3 inPosition;
layout(location = 1) in vec3 inColor;
2023-04-19 10:17:19 -04:00
layout(location = 2) in vec2 inTexCoord;
2023-04-06 15:28:09 -04:00
layout(location = 0) out vec3 fragColor;
2023-04-19 10:17:19 -04:00
layout(location = 1) out vec2 fragTexCoord;
2023-04-06 15:28:09 -04:00
void main() {
2023-04-19 10:55:49 -04:00
gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 1.0);
fragColor = inColor;
2023-04-19 10:17:19 -04:00
fragTexCoord = inTexCoord;
2023-04-06 15:28:09 -04:00
}