docs: standardize cross-reference link format to markdown

This commit is contained in:
2026-05-30 20:31:59 -05:00
parent 6d72ecf45d
commit f9010f9234
5 changed files with 62 additions and 62 deletions

View File

@@ -630,7 +630,7 @@ let shader_module = device.create_shader_module(
New concept: **GPU memory isolation.** The GPU cannot read Rust heap or stack
memory directly. Vertex data must be laid out as a flat byte array and uploaded
into a dedicated GPU [[buffer slice]](concepts/GLOSSARY.md#buffer-slice). The
into a dedicated GPU [buffer slice](concepts/GLOSSARY.md#buffer-slice). The
pipeline configuration then describes how to interpret those bytes: how many
bytes per vertex, what format each attribute has, and where in the vertex
strides the attribute begins.