diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-11-07 11:57:58 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-07 11:57:58 -0800 |
| commit | a54364303241e3cd7c3d075ee1dd4164915d939f (patch) | |
| tree | b7560ff41a43cda235ab7db8a19fd2371e3f7ba8 /tests | |
| parent | ccea5702442a7a8303e6735a038be86939c1ce7a (diff) | |
| parent | d1b45f3059e100d096327eb178c1bac365e564f1 (diff) | |
Merge branch 'master' into falcor-integration-work
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/compute/select-expr.slang | 18 | ||||
| -rw-r--r-- | tests/compute/select-expr.slang.expected.txt | 4 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tests/compute/select-expr.slang b/tests/compute/select-expr.slang new file mode 100644 index 000000000..d90708ab9 --- /dev/null +++ b/tests/compute/select-expr.slang @@ -0,0 +1,18 @@ +//TEST(smoke,compute):COMPARE_COMPUTE: +//TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):dxbinding(0),glbinding(0),out + + +// Test IR code generation for the `?:` "select" operator + +int test(int input) +{ + return input > 1 ? -input : input; +} + +RWStructuredBuffer<int> outputBuffer; + +[numthreads(4, 1, 1)] +void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID) +{ + outputBuffer[dispatchThreadID.x] = test((int) dispatchThreadID.x); +}
\ No newline at end of file diff --git a/tests/compute/select-expr.slang.expected.txt b/tests/compute/select-expr.slang.expected.txt new file mode 100644 index 000000000..384f9a732 --- /dev/null +++ b/tests/compute/select-expr.slang.expected.txt @@ -0,0 +1,4 @@ +0 +1 +FFFFFFFE +FFFFFFFD |
