xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/spv.specConst.vert (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
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