summaryrefslogtreecommitdiff
path: root/tests/compute/global-type-param-in-entrypoint.slang
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compute/global-type-param-in-entrypoint.slang')
-rw-r--r--tests/compute/global-type-param-in-entrypoint.slang2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compute/global-type-param-in-entrypoint.slang b/tests/compute/global-type-param-in-entrypoint.slang
index 4bcf4cbca..9a1e9b054 100644
--- a/tests/compute/global-type-param-in-entrypoint.slang
+++ b/tests/compute/global-type-param-in-entrypoint.slang
@@ -8,7 +8,7 @@ interface IVertInterpolant
float4 getColor();
}
-__generic_param TVertInterpolant : IVertInterpolant;
+type_param TVertInterpolant : IVertInterpolant;
struct VertImpl : IVertInterpolant
{