diff options
author | Faith Ekstrand <faith.ekstrand@collabora.com> | 2023-08-14 11:43:35 -0500 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2023-08-14 21:22:53 +0000 |
commit | 6c1d32581a4a07a05a916edf136b50f991818f19 (patch) | |
tree | f70970f37d2b89cc70f5bf93ebfca86d80db679f /docs/nir | |
parent | 977999d83640535fd0d2fccd5eeed6e6f0bfe332 (diff) | |
download | mesa-6c1d32581a4a07a05a916edf136b50f991818f19.tar.gz mesa-6c1d32581a4a07a05a916edf136b50f991818f19.tar.bz2 mesa-6c1d32581a4a07a05a916edf136b50f991818f19.zip |
nir: Drop nir_alu_dest
Instead, we replace it directly with nir_def. We could replace it with
nir_dest but the next commit gets rid of that so this avoids unnecessary
churn. Most of this commit was generated by sed:
sed -i -e 's/dest.dest.ssa/def/g' src/**/*.h src/**/*.c src/**/*.cpp
There were a few manual fixups required in the nir_legacy.c and
nir_from_ssa.c as nir_legacy_reg and nir_parallel_copy_entry both have a
similar pattern.
Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24674>
Diffstat (limited to 'docs/nir')
-rw-r--r-- | docs/nir/alu.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/nir/alu.rst b/docs/nir/alu.rst index b7af909ad3e..4b1eb3c53e1 100644 --- a/docs/nir/alu.rst +++ b/docs/nir/alu.rst @@ -65,9 +65,6 @@ use in other instruction types like intrinsics or texture ops. .. doxygenstruct:: nir_alu_src :members: -.. doxygenstruct:: nir_alu_dest - :members: - NIR ALU Opcode Reference: ------------------------- |