31 lines
635 B
GLSL
31 lines
635 B
GLSL
#version 450
|
|
#extension GL_EXT_buffer_reference : require
|
|
|
|
struct Object {
|
|
mat4 model;
|
|
};
|
|
|
|
layout(buffer_reference, buffer_reference_align = 16) buffer ObjectBuffer {
|
|
Object objects[];
|
|
};
|
|
|
|
layout( push_constant ) uniform constants {
|
|
mat4 view;
|
|
mat4 proj;
|
|
ObjectBuffer objects;
|
|
} scene;
|
|
|
|
layout(set = 0, binding = 0) uniform SceneUniform {
|
|
mat4 test;
|
|
} scene_ubo;
|
|
|
|
layout(location = 0) in vec3 inPosition;
|
|
layout(location = 1) in vec3 inColor;
|
|
|
|
layout(location = 0) out vec3 fragColor;
|
|
|
|
void main() {
|
|
gl_Position = scene.proj * scene.view * scene.objects.objects[0].model * vec4(inPosition, 1.0);
|
|
fragColor = inColor;
|
|
}
|