diff options
Diffstat (limited to 'tests/current-bugs/generic/meta.slang')
| -rw-r--r-- | tests/current-bugs/generic/meta.slang | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/current-bugs/generic/meta.slang b/tests/current-bugs/generic/meta.slang new file mode 100644 index 000000000..8304593b5 --- /dev/null +++ b/tests/current-bugs/generic/meta.slang @@ -0,0 +1,25 @@ +//DISABLE_TEST(compute):COMPARE_COMPUTE_EX:-slang -compute -shaderobj + +/* A test meta programing. + +Works. + */ + +//TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):out,name outputBuffer +RWStructuredBuffer<int> outputBuffer; + +struct GetVector4<T> +{ + typedef vector<T, 4> Value; +}; + +[numthreads(4, 1, 1)] +void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID) +{ + int index = dispatchThreadID.x; + + GetVector4<float>::Value v = { 1, 2, 3, 4 }; + + outputBuffer[index] = dot(v, v); +} + |
