summaryrefslogtreecommitdiff
path: root/docs/nir
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2022-11-07 16:52:09 +0100
committerMarge Bot <emma+marge@anholt.net>2022-11-09 12:09:17 +0000
commit4be9600ccb4ec2147914be364eb55b65f7803e87 (patch)
tree750c08cb22f8f809bfc7896218bea9eac99f5ca1 /docs/nir
parent4bc1d3e79c35bef81f2edb6ce310fcbd233b8b21 (diff)
docs: remove needless c:expr roles
Reviewed-by: Eric Engestrom <eric@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19575>
Diffstat (limited to 'docs/nir')
-rw-r--r--docs/nir/alu.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/nir/alu.rst b/docs/nir/alu.rst
index 3dc1ca28b3f..b7af909ad3e 100644
--- a/docs/nir/alu.rst
+++ b/docs/nir/alu.rst
@@ -50,7 +50,7 @@ While most instruction types in NIR require vector sizes to perfectly match on
inputs and outputs, ALU instruction sources have an additional
:cpp:member:`nir_alu_src::swizzle` field which allows them to act on vectors
which are not the native vector size of the instruction. This is ideal for
-hardware with a native data type of :c:expr:`vec4` but also means that ALU
+hardware with a native data type of `vec4` but also means that ALU
instructions are often used (and required) for packing/unpacking vectors for
use in other instruction types like intrinsics or texture ops.