1#version 450 2 3in float inf; 4out vec4 outf4; 5 6vec3 dead_fn() { return vec3(0); } 7 8void main() 9{ 10 outf4 = vec4(inf); 11} 12