DEBSOURCES
Skip Quicknav
sources / qtbase-opensource-src-gles / 5.15.15%2Bdfsg-2 / 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); }