diff options
| author | Copilot <198982749+Copilot@users.noreply.github.com> | 2025-07-10 11:02:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-10 18:02:58 +0000 |
| commit | aa3cc1e79315592e9b22fccd77fc27fef0c09762 (patch) | |
| tree | 46b780e3b2237049fdb6b2a778894c5d3d501a86 /tests | |
| parent | c1d07df3ede2e0d87d81a8d10429ae5df88519e1 (diff) | |
Fix SV_VertexID and SV_InstanceID crash with -preserve-params in SPIR-V emitter (#7691)
* Initial plan
* Fix SV_VertexID and SV_InstanceID crash with -preserve-params in SPIR-V emitter
Co-authored-by: csyonghe <2652293+csyonghe@users.noreply.github.com>
* Fix transformation layer to handle unused builtin params properly
This ensures that builtin decorations are correctly transformed for unused parameters with -preserve-params, preventing the SPIR-V emitter from seeing un-translated builtins like sv_vertexid.
Co-authored-by: csyonghe <2652293+csyonghe@users.noreply.github.com>
* Format code according to project style
Co-authored-by: csyonghe <2652293+csyonghe@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: csyonghe <2652293+csyonghe@users.noreply.github.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/spirv/sv-vertex-id-preserve-params.slang | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/spirv/sv-vertex-id-preserve-params.slang b/tests/spirv/sv-vertex-id-preserve-params.slang new file mode 100644 index 000000000..6bf4bfb89 --- /dev/null +++ b/tests/spirv/sv-vertex-id-preserve-params.slang @@ -0,0 +1,13 @@ +//TEST:SIMPLE(filecheck=SPIRV): -entry VertexMain -stage vertex -target spirv -preserve-params +//TEST:SIMPLE(filecheck=SPIRV): -entry VertexMain -stage vertex -target spirv -emit-spirv-directly -preserve-params + +// Test for https://github.com/shader-slang/slang/issues/7689 +// SV_VertexID combined with -preserve-params should not crash + +// SPIRV: OpEntryPoint + +[shader("vertex")] +float4 VertexMain(uint vertexId: SV_VertexID, uint instanceId: SV_InstanceID) : SV_Position +{ + return float4(0.0); +}
\ No newline at end of file |
