summaryrefslogtreecommitdiff
path: root/docs/user-guide/a2-01-spirv-target-specific.md
diff options
context:
space:
mode:
authoraidanfnv <aidanf@nvidia.com>2025-07-27 09:58:31 -0700
committerGitHub <noreply@github.com>2025-07-27 16:58:31 +0000
commit6d399804a353154259cf4410940f144db8f9b5cf (patch)
treeb4049a34c4e1af6aa2e7dbf2cb59bc4ae28d9b85 /docs/user-guide/a2-01-spirv-target-specific.md
parentd311efd9d6ddc620f5960c6fc10f25daa628df6c (diff)
Fix broken links in User Guide (#7938)
* Fix broken links in User Guide * Fix link text with filename, use title
Diffstat (limited to 'docs/user-guide/a2-01-spirv-target-specific.md')
-rw-r--r--docs/user-guide/a2-01-spirv-target-specific.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user-guide/a2-01-spirv-target-specific.md b/docs/user-guide/a2-01-spirv-target-specific.md
index 7686f7312..05bf023df 100644
--- a/docs/user-guide/a2-01-spirv-target-specific.md
+++ b/docs/user-guide/a2-01-spirv-target-specific.md
@@ -287,7 +287,7 @@ To generate a valid SPIR-V with multiple entry points, use `-fvk-use-entrypoint-
Global memory pointers
------------------------------
-Slang supports global memory pointers when targeting SPIRV. See [an example and explanation](03-convenience-features.html#pointers-limited).
+Slang supports global memory pointers when targeting SPIRV. See [an example and explanation](03-convenience-features.md#pointers-limited).
`float4*` in user code will be translated to a pointer in PhysicalStorageBuffer storage class in SPIRV.
When a slang module uses a pointer type, the resulting SPIRV will be using the SpvAddressingModelPhysicalStorageBuffer64 addressing mode. Modules without use of pointers will use SpvAddressingModelLogical addressing mode.