gearlib/assets/quad.frag

14 lines
185 B
GLSL
Raw Normal View History

2024-04-30 23:02:19 +12:00
#version 460 core
layout(location = 0) out vec4 color;
struct VertexOutput {
2024-05-03 11:18:50 +12:00
vec4 Color;
2024-04-30 23:02:19 +12:00
};
layout(location = 0) in VertexOutput Input;
void main() {
2024-05-03 11:18:50 +12:00
color = Input.Color;
2024-04-30 23:02:19 +12:00
}