diff options
| author | Tim Foley <tim.foley.is@gmail.com> | 2017-07-14 17:15:51 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-14 17:15:51 -0700 |
| commit | eecb6c56da5792010e88f2a0d6d1503244b081a4 (patch) | |
| tree | 427a1073c4d2bdafb3b1f4ba2480a70c9af52b4a /tests/reflection/thread-group-size.hlsl.expected | |
| parent | ffa7f2a9e919be6f155d1c6e62e85827ffc6e3bd (diff) | |
| parent | 66bae403827a37bdc587f3356cc58fde166d04a1 (diff) | |
Merge pull request #92 from tfoleyNV/glsl-thread-group-size
Add reflection support for GLSL thread-group-size modifier
Diffstat (limited to 'tests/reflection/thread-group-size.hlsl.expected')
| -rw-r--r-- | tests/reflection/thread-group-size.hlsl.expected | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/reflection/thread-group-size.hlsl.expected b/tests/reflection/thread-group-size.hlsl.expected new file mode 100644 index 000000000..60d5e822c --- /dev/null +++ b/tests/reflection/thread-group-size.hlsl.expected @@ -0,0 +1,39 @@ +result code = 0 +standard error = { +} +standard output = { +{ + "parameters": [ + { + "name": "b", + "binding": {"kind": "unorderedAccess", "index": 0}, + "type": { + "kind": "resource", + "baseShape": "structuredBuffer", + "access": "readWrite" + } + } + ], + "entryPoints": [ + { + "name": "main", + "stage:": "compute", + "parameters": [ + { + "name": "tid", + "binding": {"kind": "vertexInput", "index": 0}, + "type": { + "kind": "vector", + "elementCount": 3, + "elementType": { + "kind": "scalar", + "scalarType": "uint32" + } + } + } + ], + "threadGroupSize": [3, 5, 7] + } + ] +} +} |
