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.