summaryrefslogtreecommitdiffstats
path: root/tests/compute/generics-simple.slang.expected.txt
Commit message (Collapse)AuthorAge
* fix compute shader test result comparisonYong He2017-10-23
|
* Fix up emission of shader parameter semantics when using IR (#226)Tim Foley2017-10-20
* Fix up emission of shader parameter semantics when using IR - Make sure to propagate entry point parameter layouts down to IR parameters when doing the initial cloning to form target-specific IR - When layout information is present on an IR node, prefer to use that over the original high-level declaration for outputting semantics in final HLSL - Fix up test runner to generate `.actual` files when running compute tests, in cases where the `render-test` application errors out (e.g., because of a Slang compilation error) - Add a first test of generics functionality, to show that they generate valid code through the IR - Right now this test is *not* using any "interesting" operations on the type parameter, so this is not a test that can confirm that interface constraints work * fixup: skip compute tests when running on Linux