Files
vulkan-zig/examples/shaders/test.frag
2020-07-04 04:18:56 +02:00

8 lines
110 B
GLSL

#version 450
layout(location = 0) out vec4 f_color;
void main() {
f_color = vec4(1.0, 0.0, 0.0, 1.0);
}