1#version 450 2 3layout(constant_id = 11) const int a = 8; 4 5void main() 6{ 7 gl_Position = vec4(1.0) / a; 8} 9