DEBSOURCES
Skip Quicknav
sources / qt6-base / 6.9.1%2Bdfsg-4 / examples / vulkan / shared / color.frag
12345678910
#version 440 layout(location = 0) in vec3 v_color; layout(location = 0) out vec4 fragColor; void main() { fragColor = vec4(v_color, 1.0); }