28 Jun
2023
28 Jun
'23
11:20 a.m.
Giovanni Mascellani (@giomasce) commented about tests/hlsl-initializer-multi.shader_test:
+[pixel shader todo] +float4 main() : sv_target +{ + float a = 2.0, b = a + 1.0, c = b; + + return float4(a, b, c, 0); +} + Would you mind adding this test too?
```hlsl [pixel shader fail] float4 main() : sv_target { float a = 2.0, b = c + 1.0, c = b; return float4(0); } ``` Also, this commits lacks the "tests:" subject prefix. -- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/250#note_37112