mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2024-11-24 23:59:18 +08:00
26 lines
594 B
GLSL
26 lines
594 B
GLSL
|
#version 450
|
||
|
#extension GL_ARB_separate_shader_objects : enable
|
||
|
#extension GL_NV_gpu_shader5 : enable
|
||
|
|
||
|
layout(binding = 0) uniform UniformBufferObject {
|
||
|
mat4 model;
|
||
|
mat4 view;
|
||
|
mat4 proj;
|
||
|
} ubo;
|
||
|
|
||
|
layout(location = 0) in vec4 inPosition;
|
||
|
layout(location = 1) in vec3 inColor;
|
||
|
layout(location = 2) in vec2 inTexCoord;
|
||
|
|
||
|
layout(location = 0) out vec3 fragColor;
|
||
|
layout(location = 1) out vec2 fragTexCoord;
|
||
|
|
||
|
out gl_PerVertex {
|
||
|
vec4 gl_Position;
|
||
|
};
|
||
|
|
||
|
void main() {
|
||
|
gl_Position = ubo.proj * ubo.view * ubo.model * inPosition;
|
||
|
fragColor = inColor;
|
||
|
fragTexCoord = inTexCoord;
|
||
|
}
|