diff options
| author | Yong He <yonghe@outlook.com> | 2017-10-19 19:38:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-19 19:38:07 -0400 |
| commit | 7ba937faa3f72b0f319150c3dde041d8a353c007 (patch) | |
| tree | 4e4ac0f96ca2d9a7647f64e108498ea0d69c5acf /tests/compute/simple.slang | |
| parent | 88023aea669f258d66e53eab10215337a7f72853 (diff) | |
| parent | 5a18dc704a2f5eecebcbdd77682a40ba8316d253 (diff) | |
Merge pull request #225 from csyonghe/master
Support running compute shaders in testing framework
Diffstat (limited to 'tests/compute/simple.slang')
| -rw-r--r-- | tests/compute/simple.slang | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/compute/simple.slang b/tests/compute/simple.slang new file mode 100644 index 000000000..3f43c8cc7 --- /dev/null +++ b/tests/compute/simple.slang @@ -0,0 +1,11 @@ +//TEST(smoke,compute):COMPARE_COMPUTE: + +// This is a basic test for Slang compute shader. + +RWStructuredBuffer<float> outputBuffer; + +[numthreads(4, 1, 1)] +void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID) +{ + outputBuffer[dispatchThreadID.x] = float(dispatchThreadID.x); +}
\ No newline at end of file |
