xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/hlsl.swizzle.vec1.comp (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1void main()
2{
3    float1 f1;
4    f1.x = 0.5;
5
6    // This is not implemented
7    // f1.xx = float2(0.6, 0.7);
8}
9