gearlib-cpp/examples/assets/quad.frag

14 lines
185 B
GLSL
Raw Normal View History

2024-05-16 22:37:46 +12:00
#version 460 core
layout(location = 0) out vec4 color;
struct VertexOutput {
vec4 Color;
};
layout(location = 0) in VertexOutput Input;
void main() {
color = Input.Color;
}