glslang/Test/hlsl.swizzle.vec1.comp
Pavel Asyutchenko e46c1b725c Keep vec1.x l-value in HLSL
Changes in hlsl.shapeConv.frag are just renumbering,
duplicated load (80) has disappeared for whatever reason.
2024-04-22 11:50:37 -04:00

9 lines
112 B
Plaintext

void main()
{
float1 f1;
f1.x = 0.5;
// This is not implemented
// f1.xx = float2(0.6, 0.7);
}