summaryrefslogtreecommitdiff
path: root/tests/pipeline/rasterization/mesh/task-groupshared.slang
diff options
context:
space:
mode:
authorEllie Hermaszewska <ellieh@nvidia.com>2024-03-15 08:48:41 +0800
committerGitHub <noreply@github.com>2024-03-14 17:48:41 -0700
commitd40931cc8bde13520ea45769cf94e7cc6cc9065f (patch)
treeecde6ebbfbc1445c587b0339332814837ff43229 /tests/pipeline/rasterization/mesh/task-groupshared.slang
parentc7d7a965c14318c07bd5b8ec60b960c2e95dfebd (diff)
Mesh shader refactoring and bugfixes (#3702)
Diffstat (limited to 'tests/pipeline/rasterization/mesh/task-groupshared.slang')
-rw-r--r--tests/pipeline/rasterization/mesh/task-groupshared.slang4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pipeline/rasterization/mesh/task-groupshared.slang b/tests/pipeline/rasterization/mesh/task-groupshared.slang
index c633aeeb1..518d94bfb 100644
--- a/tests/pipeline/rasterization/mesh/task-groupshared.slang
+++ b/tests/pipeline/rasterization/mesh/task-groupshared.slang
@@ -71,8 +71,8 @@ const static uint MAX_PRIMS = 4;
void meshMain(
in uint tig : SV_GroupIndex,
in payload MeshPayload meshPayload,
- out Vertices<Vertex, MAX_VERTS> verts,
- out Indices<uint3, MAX_PRIMS> triangles)
+ OutputVertices<Vertex, MAX_VERTS> verts,
+ OutputIndices<uint3, MAX_PRIMS> triangles)
{
const uint numVertices = 12;
const uint numPrimitives = 4;